+debhelper (0.55) unstable; urgency=low
+
+ * dh_clean: delete substvarsfiles probperly again (broken in 0.53). #17077
+ * Added call to dh_movefiles, and a commented out call to dh_testversion,
+ to some of the sample rules files. #17076
+
+ -- Joey Hess <joeyh@master.debian.org> Wed, 14 Jan 1998 12:48:43 -0500
+
debhelper (0.54) unstable; urgency=low
* dh_lib: no longer call getopt(1) to parse options. I wrote my own
if [ "$compress" ]; then
# The config file is a sh script that outputs the files to be compressed
# (typically using find).
- files=`sh $olddir/$compress 2>/dev/null`
+ files=`sh $olddir/$compress 2>/dev/null ; true`
else
# By default fall back on what the policy manual says to compress.
files=`
find usr/info usr/man usr/X11*/man -type f 2>/dev/null ;
find usr/doc -type f \( -size +4k -or -name "changelog*" \) \
! -name "*.htm*" ! -name "*.gif" \
- ! -name "copyright" 2>/dev/null
+ ! -name "copyright" 2>/dev/null ;
+ true
`
fi