diff options
author | Koen Kooi <koen@openembedded.org> | 2008-06-10 22:05:00 +0000 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2008-06-10 22:05:00 +0000 |
commit | 8993f246c593e78038f7422c24897bfd16348945 (patch) | |
tree | b4a9ca8f6b8aade32e15e5e56b23d647442b744f /packages/gcc/gcc-4.3.1/debian/template.dpatch | |
parent | 0985e00d9608d3f197772046763e03a00a72cd5e (diff) |
gcc 4.3.0: replace with gcc 4.3.1
Diffstat (limited to 'packages/gcc/gcc-4.3.1/debian/template.dpatch')
-rw-r--r-- | packages/gcc/gcc-4.3.1/debian/template.dpatch | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/packages/gcc/gcc-4.3.1/debian/template.dpatch b/packages/gcc/gcc-4.3.1/debian/template.dpatch new file mode 100644 index 0000000000..71ffc51cbd --- /dev/null +++ b/packages/gcc/gcc-4.3.1/debian/template.dpatch @@ -0,0 +1,33 @@ +#! /bin/sh -e + +# All lines beginning with `# DPATCH:' are a description of the patch. +# DP: <your description> + +# remove the next line +exit 0 + +dir= +if [ $# -eq 3 -a "$2" = '-d' ]; then + pdir="-d $3" + dir="$3/" +elif [ $# -ne 1 ]; then + echo >&2 "`basename $0`: script expects -patch|-unpatch as argument" + exit 1 +fi +case "$1" in + -patch) + patch $pdir -f --no-backup-if-mismatch -p0 < $0 + #cd ${dir}gcc && autoconf + ;; + -unpatch) + patch $pdir -f --no-backup-if-mismatch -R -p0 < $0 + #rm ${dir}gcc/configure + ;; + *) + echo >&2 "`basename $0`: script expects -patch|-unpatch as argument" + exit 1 +esac +exit 0 + +# append the patch here and adjust the -p? flag in the patch calls. + |