summaryrefslogtreecommitdiff
path: root/packaging/Debian/debian/scripts/unpatch-source
blob: ae58b2851ca1a60a195f3ab92334ad9ba4e44877 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/sh -e
#
# $Id: unpatch-source,v 1.3 2003/06/01 07:12:51 peloy Exp $
#

# 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