1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
|
#! /bin/sh -e
## 04_README.dpatch by Helge Kreutzmann <debian@helgefjell.de>
##
## All lines beginning with `## DP:' are a description of the patch.
## DP: Update upstream's URL in upstream's README as well
[ -f debian/patches/00patch-opts ] && . debian/patches/00patch-opts
patch_opts="${patch_opts:--f --no-backup-if-mismatch ${2:+-d $2}}"
if [ $# -lt 1 ]; then
echo >&2 "`basename $0`: script expects -patch|-unpatch as argument"
exit 1
fi
case "$1" in
-patch) patch $patch_opts -p1 < $0;;
-unpatch) patch $patch_opts -p1 -R < $0;;
*)
echo >&2 "`basename $0`: script expects -patch|-unpatch as argum&ent"
exit 1;;
esac
exit 0
@DPATCH@
--- linuxinfo-1.1.8.upstream/README 2002-02-04 23:51:20.000000000 +0100
+++ linuxinfo-1.1.8.play/README 2005-11-06 10:21:10.797728752 +0100
@@ -2,7 +2,7 @@
The latest releases are always available at:
- http://www.munted.org.uk/programming/prog.html
+ http://www.munted.org.uk/programming/
linuxinfo was written by Alex Buell, alex.buell@munted.org.uk
|