summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.quiltrc6
1 files changed, 5 insertions, 1 deletions
diff --git a/.quiltrc b/.quiltrc
index f3b0d15d..8db85ad7 100644
--- a/.quiltrc
+++ b/.quiltrc
@@ -1,4 +1,7 @@
-# from https://raphaelhertzog.com/2012/08/08/how-to-use-quilt-to-manage-patches-in-debian-packages/
+# all from:
+# https://raphaelhertzog.com/2012/08/08/how-to-use-quilt-to-manage-patches-in-debian-packages/
+
+# detect Debian quilt patches
for where in ./ ../ ../../ ../../../ ../../../../ ../../../../../; do
if [ -e ${where}debian/rules -a -d ${where}debian/patches ]; then
export QUILT_PATCHES=debian/patches
@@ -6,6 +9,7 @@ for where in ./ ../ ../../ ../../../ ../../../../ ../../../../../; do
fi
done
+# generate nicer patches & use colour
QUILT_PUSH_ARGS="--color=auto"
QUILT_DIFF_ARGS="--no-timestamps --no-index -p ab --color=auto"
QUILT_REFRESH_ARGS="--no-timestamps --no-index -p ab"