X-Git-Url: http://www.privoxy.org/gitweb/?a=blobdiff_plain;ds=sidebyside;f=debian%2Fpatches%2F11_backup_autotools.dpatch;fp=debian%2Fpatches%2F11_backup_autotools.dpatch;h=0000000000000000000000000000000000000000;hb=b1f25d63e134f8efce6f4d3851940468ace1f2df;hp=b3aa917fb9f1c699b3f7d3e7b0c30d0cf2498591;hpb=72df7c88990336e83161ce1c47c949423a591476;p=privoxy.git diff --git a/debian/patches/11_backup_autotools.dpatch b/debian/patches/11_backup_autotools.dpatch deleted file mode 100644 index b3aa917f..00000000 --- a/debian/patches/11_backup_autotools.dpatch +++ /dev/null @@ -1,25 +0,0 @@ -#! /bin/sh -e -## 11_backup_autotools.dpatch by Ralf Treinen -## -## 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