Add all Debian changes from 3.0.19-2 to 3.0.24-1
[privoxy.git] / debian / patches / 11_backup_autotools.dpatch
diff --git a/debian/patches/11_backup_autotools.dpatch b/debian/patches/11_backup_autotools.dpatch
deleted file mode 100644 (file)
index b3aa917..0000000
+++ /dev/null
@@ -1,25 +0,0 @@
-#! /bin/sh -e
-## 11_backup_autotools.dpatch by 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