From 168cfd101a2d522c0c7cbe06480f50e133ef1d40 Mon Sep 17 00:00:00 2001 From: joey Date: Tue, 17 Aug 1999 04:53:44 +0000 Subject: [PATCH] r95: Initial Import --- debian/changelog | 8 ++++++++ dh_compress | 4 ++-- doc/PROGRAMMING | 6 ++++-- 3 files changed, 14 insertions(+), 4 deletions(-) diff --git a/debian/changelog b/debian/changelog index 180a642..cca97b6 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,11 @@ +debhelper (0.98) unstable; urgency=low + + * dh_lib: isnative: pass -l to dpkg-parsechangelog, to support + odd packages with multiple different debian changelogs. + * doc/PROGRAMMING: cleaned up the docs on DH_EXCLUDE_FIND. + + -- Joey Hess Mon, 6 Jul 1998 12:45:13 -0700 + debhelper (0.97) unstable; urgency=low * doc/from-debstd: fixed a typo. diff --git a/dh_compress b/dh_compress index d24a561..1b58f70 100755 --- a/dh_compress +++ b/dh_compress @@ -28,8 +28,8 @@ filelist () { # Call only if DH_EXCLUDE_GREP is non-empty. filelist_excluded () { # Use grep -F so we don't have to worry about regexp's. - filelist | grep -v -F \ - "`echo "$DH_EXCLUDE_GREP" | tr "|" "\n"`" + (filelist | grep -v -F \ + "`echo "$DH_EXCLUDE_GREP" | tr "|" "\n"`") || true } for PACKAGE in $DH_DOPACKAGES; do diff --git a/doc/PROGRAMMING b/doc/PROGRAMMING index faaa936..402d5e7 100644 --- a/doc/PROGRAMMING +++ b/doc/PROGRAMMING @@ -81,8 +81,10 @@ switch variable description DH_EXCLUDE_GREP same as DH_EXCLUDE, except all items are separated by '|' characters, instead of spaces, handy for egrep -v - DH_EXCLUDE_FIND same as DH_EXCLUDE, except all items are - separated by " -or " + DH_EXCLUDE_FIND same as DH_EXCLUDE, except all items are put + into a string in a way that they will make + find find them. (Use ! in front to negate + that, of course) -x DH_INCLUDE_CONFFILES include conffiles. It's -x for obscure historical reasons. -- 2.39.5