Add all Debian changes from 3.0.19-2 to 3.0.24-1
[privoxy.git] / debian / patches / 10_backup_doc.dpatch
diff --git a/debian/patches/10_backup_doc.dpatch b/debian/patches/10_backup_doc.dpatch
deleted file mode 100644 (file)
index 050df8f..0000000
+++ /dev/null
@@ -1,27 +0,0 @@
-#! /bin/sh -e
-## 10_backup_doc.dpatch by Roland Rosenfeld <roland@debian.org>
-##
-## All lines beginning with `## DP:' are a description of the patch.
-## DP: Backup the upstream versions of all generated documentation
-
-dpatch_patch ()
-{
-    tar cf debian/patched/doc.bak.tar README
-    for i in doc/source doc/text doc/webserver \
-             INSTALL AUTHORS privoxy.1
-    do
-       if [ -e $i ]
-       then
-          tar rf debian/patched/doc.bak.tar $i
-       fi
-    done
-}
-
-dpatch_unpatch ()
-{
-    tar xf debian/patched/doc.bak.tar
-}
-
-DPATCH_LIB_NO_DEFAULT=1
-
-. /usr/share/dpatch/dpatch.lib.sh