Bringing packaging/Debian/* to a more recent state.
[garming/samba-autobuild/.git] / packaging / Debian / debian / scripts / unpatch-source
1 #!/bin/sh -e
2 #
3 # $Id: unpatch-source,v 1.3 2003/06/01 07:12:51 peloy Exp $
4 #
5
6 # We want to reverse the patches in the opposite order we applied
7 #       them, hence the 'ls|sort -r'.
8 for patch in `ls debian/patches/*.patch | sort -r`; do
9         patch -p1 -R < $patch
10 done
11
12 perl -pi -e's/-.* for Debian//' source/include/version.h
13
14 # Regenerate configure only if it is older than configure.in
15 [ source/configure -ot source/configure.in ] && (cd source && autoheader && autoconf)
16
17 exit 0