summaryrefslogtreecommitdiff
path: root/.quiltrc
diff options
context:
space:
mode:
Diffstat (limited to '.quiltrc')
-rw-r--r--.quiltrc12
1 files changed, 12 insertions, 0 deletions
diff --git a/.quiltrc b/.quiltrc
new file mode 100644
index 00000000..f3b0d15d
--- /dev/null
+++ b/.quiltrc
@@ -0,0 +1,12 @@
+# from https://raphaelhertzog.com/2012/08/08/how-to-use-quilt-to-manage-patches-in-debian-packages/
+for where in ./ ../ ../../ ../../../ ../../../../ ../../../../../; do
+ if [ -e ${where}debian/rules -a -d ${where}debian/patches ]; then
+ export QUILT_PATCHES=debian/patches
+ break
+ fi
+done
+
+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"
+QUILT_DIFF_OPTS='-p'