+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.
# 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
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.