summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSean Whitton <spwhitton@spwhitton.name>2018-04-15 11:25:42 -0700
committerSean Whitton <spwhitton@spwhitton.name>2018-04-15 11:25:42 -0700
commit2540b5389c633e7aeead2e3bcb43de0e19787965 (patch)
tree792acde7466ed749f140e322a6379858eb074da8
parent4f5879228cde0fc10a0cea832fe4cd42d479f078 (diff)
downloaddotfiles-2540b5389c633e7aeead2e3bcb43de0e19787965.tar.gz
comments
-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"