Subversion Repositories nettle

Compare Revisions

Ignore whitespace Rev 26 → Rev 25

/branches/experimental/debian/patches/01_config.dpatch
File deleted
/branches/experimental/debian/patches/00list
1,3 → 1,3
01_config
20_link_with_gmp
30_sparc_aes_include
99_autotools_files
/branches/experimental/debian/patches/99_autotools_files.dpatch
0,0 → 1,28
#!/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.dp-orig; then
mv $f $f.dp-orig
cp --remove-destination /usr/share/misc/$f .
fi
done
}
 
dpatch_unpatch() {
for f in config.sub config.guess; do
if test -e $f.dp-orig; then
mv -f $f.dp-orig $f
fi
done
}
 
 
DPATCH_LIB_NO_DEFAULT=1
 
. /usr/share/dpatch/dpatch.lib.sh