From: joey <joey>
Date: Tue, 17 Aug 1999 04:53:44 +0000 (+0000)
Subject: r95: Initial Import
X-Git-Tag: debian_version_0_1~138
X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=168cfd101a2d522c0c7cbe06480f50e133ef1d40;p=debhelper.git

r95: Initial Import
---

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<changelog> to dpkg-parsechangelog, to support
+    odd packages with multiple different debian changelogs.
+  * doc/PROGRAMMING: cleaned up the docs on DH_EXCLUDE_FIND.
+
+ -- Joey Hess <joeyh@master.debian.org>  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.