• Home
  • History
  • Annotate
  • Line#
  • Navigate
  • Raw
  • Download
  • only in /netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/packaging/Debian/debian-stable/scripts/
1#!/bin/sh -e
2#
3#
4
5# We want to reverse the patches in the opposite order we applied
6#	them, hence the 'ls|sort -r'.
7for patch in `ls debian/patches/*.patch | sort -r`; do
8	patch -p1 -R --ignore-whitespace < $patch
9done
10
11# Unused code. See comment in the patch-source script.
12
13#TMPFILE=source/VERSION.debian
14#sed -e "s/^\(SAMBA_VERSION_VENDOR_SUFFIX=\).*$/\1/" source/VERSION > ${TMPFILE}
15#mv -f ${TMPFILE} source/VERSION
16
17# Regenerate configure only if it is older than configure.in
18[ source/configure -ot source/configure.in ] && (cd source && autoheader && autoconf)
19
20exit 0
21