Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed
#!/bin/sh
## 01_autotools_files.dpatch by Magnus Holmgren <magnus@kibibyte.se>
##
## DP: Copy in updated config.sub and config.guess from autotools-dev
set -e
dpatch_patch() {
for f in config.sub config.guess; do
if ! test -e $f.orig; then
mv $f $f.orig
cp --remove-destination /usr/share/misc/$f .
fi
done
}
dpatch_unpatch() {
for f in config.sub config.guess; do
if test -e $f.orig; then
mv -f $f.orig $f
fi
done
}
DPATCH_LIB_NO_DEFAULT=1
. /usr/share/dpatch/dpatch.lib.sh