Subversion Repositories nettle

Compare Revisions

Ignore whitespace Rev 25 → Rev 26

/branches/experimental/debian/patches/99_autotools_files.dpatch
File deleted
/branches/experimental/debian/patches/01_config.dpatch
0,0 → 1,28
#! /bin/sh -e
## config.dpatch
## Ralf Treinen <treinen@debian.org>
##
## All lines beginning with `## DP:' are a description of the patch.
## DP: replace all config.{guess,sub} by the vesion installed in
## DP: /usr/share/misc
 
dpatch_patch ()
{
find . -name config.guess -o -name config.sub \
| tar cf debian/patched/config.guess+sub.tar -T -
find . -name config.guess \
-exec ln -sf /usr/share/misc/config.guess '{}' \;
find . -name config.sub \
-exec ln -sf /usr/share/misc/config.sub '{}' \;
}
 
dpatch_unpatch ()
{
tar xf debian/patched/config.guess+sub.tar
}
 
DPATCH_LIB_NO_DEFAULT=1
 
. /usr/share/dpatch/dpatch.lib.sh
 
# arch-tag: 8a610a57-687b-4395-8ff2-79265c0a4eb3
/branches/experimental/debian/patches/00list
1,3 → 1,3
01_config
20_link_with_gmp
30_sparc_aes_include
99_autotools_files