diff options
author | Eloy Paris <peloy@samba.org> | 2003-06-01 07:12:51 +0000 |
---|---|---|
committer | Eloy Paris <peloy@samba.org> | 2003-06-01 07:12:51 +0000 |
commit | 57be8ec8ac6158a37bfe78e97e8f05cd3a3bf54d (patch) | |
tree | 38a531bc4190daee2f461a6a51f1f5e6abe835cf /packaging/Debian/debian/scripts/unpatch-source | |
parent | f6b7bb44a61583a4743767d7ea5e3de5127e0176 (diff) | |
download | samba-57be8ec8ac6158a37bfe78e97e8f05cd3a3bf54d.tar.gz samba-57be8ec8ac6158a37bfe78e97e8f05cd3a3bf54d.tar.bz2 samba-57be8ec8ac6158a37bfe78e97e8f05cd3a3bf54d.zip |
Bringing packaging/Debian/* to a more recent state.
(This used to be commit cd7494a19608f2b4a63b9c654dd8e0a0fc587c39)
Diffstat (limited to 'packaging/Debian/debian/scripts/unpatch-source')
-rwxr-xr-x | packaging/Debian/debian/scripts/unpatch-source | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/packaging/Debian/debian/scripts/unpatch-source b/packaging/Debian/debian/scripts/unpatch-source index 81d51f7dd4..ae58b2851c 100755 --- a/packaging/Debian/debian/scripts/unpatch-source +++ b/packaging/Debian/debian/scripts/unpatch-source @@ -1,7 +1,17 @@ #!/bin/sh -e +# +# $Id: unpatch-source,v 1.3 2003/06/01 07:12:51 peloy Exp $ +# -for patch in debian/patches/*.patch; do +# We want to reverse the patches in the opposite order we applied +# them, hence the 'ls|sort -r'. +for patch in `ls debian/patches/*.patch | sort -r`; do patch -p1 -R < $patch done +perl -pi -e's/-.* for Debian//' source/include/version.h + +# Regenerate configure only if it is older than configure.in +[ source/configure -ot source/configure.in ] && (cd source && autoheader && autoconf) + exit 0 |