summaryrefslogtreecommitdiff
path: root/.quiltrc
blob: 18fcb7e925a7da695f171d5c5ea7efa6aaec2e43 (plain)
  1. d=. ; while [ ! -d $d/debian -a `readlink -e $d` != / ]; do d=$d/..; done
  2. if [ -d $d/debian ] && [ -z $QUILT_PATCHES ]; then
  3. # if in Debian packaging tree with unset $QUILT_PATCHES
  4. QUILT_PATCHES="debian/patches"
  5. QUILT_PATCH_OPTS="--reject-format=unified"
  6. QUILT_DIFF_ARGS="-p ab --no-timestamps --no-index --color=auto"
  7. QUILT_REFRESH_ARGS="-p ab --no-timestamps --no-index"
  8. QUILT_COLORS="diff_hdr=1;32:diff_add=1;34:diff_rem=1;31:diff_hunk=1;33:diff_ctx=35:diff_cctx=33"
  9. if ! [ -d $d/debian/patches ]; then mkdir $d/debian/patches; fi
  10. fi