diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2013-02-04 15:08:39 -0200 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2013-02-04 15:08:39 -0200 |
commit | 28cc7964357a2c0dedfe7715265765a2e0039852 (patch) | |
tree | 0b903b684f060285eb633bb5f9e36956727f818a /modules/debian/quiltrc-dpkg.dot.link | |
parent | b3232dc1f91adaa3f93919766ef34b29f046651a (diff) | |
download | dotfiles-28cc7964357a2c0dedfe7715265765a2e0039852.tar.gz dotfiles-28cc7964357a2c0dedfe7715265765a2e0039852.tar.bz2 |
Adding debian dev module
Diffstat (limited to 'modules/debian/quiltrc-dpkg.dot.link')
-rw-r--r-- | modules/debian/quiltrc-dpkg.dot.link | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/modules/debian/quiltrc-dpkg.dot.link b/modules/debian/quiltrc-dpkg.dot.link new file mode 100644 index 0000000..7f74f4c --- /dev/null +++ b/modules/debian/quiltrc-dpkg.dot.link @@ -0,0 +1,10 @@ +d=. ; while [ ! -d $d/debian -a `readlink -e $d` != / ]; do d=$d/..; done +if [ -d $d/debian ] && [ -z $QUILT_PATCHES ]; then + # if in Debian packaging tree with unset $QUILT_PATCHES + QUILT_PATCHES="debian/patches" + QUILT_PATCH_OPTS="--reject-format=unified" + QUILT_DIFF_ARGS="-p ab --no-timestamps --no-index --color=auto" + QUILT_REFRESH_ARGS="-p ab --no-timestamps --no-index" + QUILT_COLORS="diff_hdr=1;32:diff_add=1;34:diff_rem=1;31:diff_hunk=1;33:diff_ctx=35:diff_cctx=33" + if ! [ -d $d/debian/patches ]; then mkdir $d/debian/patches; fi +fi |