summaryrefslogtreecommitdiff
path: root/packaging/Debian/debian/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'packaging/Debian/debian/scripts')
-rwxr-xr-xpackaging/Debian/debian/scripts/patch-source7
-rwxr-xr-xpackaging/Debian/debian/scripts/unpatch-source7
2 files changed, 14 insertions, 0 deletions
diff --git a/packaging/Debian/debian/scripts/patch-source b/packaging/Debian/debian/scripts/patch-source
new file mode 100755
index 0000000000..a95a002048
--- /dev/null
+++ b/packaging/Debian/debian/scripts/patch-source
@@ -0,0 +1,7 @@
+#!/bin/sh -e
+
+for patch in debian/patches/*.patch; do
+ patch -p1 < $patch
+done
+
+exit 0
diff --git a/packaging/Debian/debian/scripts/unpatch-source b/packaging/Debian/debian/scripts/unpatch-source
new file mode 100755
index 0000000000..81d51f7dd4
--- /dev/null
+++ b/packaging/Debian/debian/scripts/unpatch-source
@@ -0,0 +1,7 @@
+#!/bin/sh -e
+
+for patch in debian/patches/*.patch; do
+ patch -p1 -R < $patch
+done
+
+exit 0