~ubuntu-branches/ubuntu/breezy/myspell/breezy

« back to all changes in this revision

Viewing changes to debian/patches/06_gcc_34.dpatch

  • Committer: Bazaar Package Importer
  • Author(s): Rene Engelhard
  • Date: 2004-09-21 13:19:36 UTC
  • Revision ID: james.westby@ubuntu.com-20040921131936-ref0wy8l9ghwc2j5
Tags: 1:3.0+pre3.1-10
affix.readme is compressed by dh_compress, change manpage
to reflect that... [RE] 

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#! /bin/sh -e
 
2
## 06_gcc_34.dpatch by Rene Engelhard <rene@debian.org>
 
3
##
 
4
## All lines beginning with `## DP:' are a description of the patch.
 
5
## DP: No description.
 
6
 
 
7
if [ $# -lt 1 ]; then
 
8
    echo "`basename $0`: script expects -patch|-unpatch as argument" >&2
 
9
    exit 1
 
10
fi
 
11
 
 
12
[ -f debian/patches/00patch-opts ] && . debian/patches/00patch-opts
 
13
patch_opts="${patch_opts:--f --no-backup-if-mismatch} ${2:+-d $2}"
 
14
 
 
15
case "$1" in
 
16
    -patch) patch -p1 ${patch_opts} < $0;;
 
17
    -unpatch) patch -R -p1 ${patch_opts} < $0;;
 
18
    *)
 
19
        echo "`basename $0`: script expects -patch|-unpatch as argument" >&2
 
20
        exit 1;;
 
21
esac
 
22
 
 
23
exit 0
 
24
 
 
25
@DPATCH@
 
26
diff -urNad /home/rene/Debian/Pakete/MySpell/myspell-3.0+pre3.1/csutil.cxx myspell-3.0+pre3.1/csutil.cxx
 
27
--- /home/rene/Debian/Pakete/MySpell/myspell-3.0+pre3.1/csutil.cxx      2004-01-04 21:29:49.000000000 +0100
 
28
+++ myspell-3.0+pre3.1/csutil.cxx       2004-07-14 16:25:49.000000000 +0200
 
29
@@ -3836,7 +3836,7 @@
 
30
     }
 
31
   }
 
32
   return ccs;
 
33
-};
 
34
+}
 
35
 
 
36
 
 
37
 
 
38
@@ -3869,5 +3869,5 @@
 
39
     }
 
40
   }
 
41
   return NULL;
 
42
-};
 
43
+}
 
44