From: joey Date: Tue, 17 Aug 1999 04:51:01 +0000 (+0000) Subject: r83: Initial Import X-Git-Tag: debian_version_0_1~149 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=e2e6c1aa15de906802f95e2b8a6e8b702e4a026b;p=debhelper.git r83: Initial Import --- diff --git a/debian/changelog b/debian/changelog index 0103f06..148c6ea 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +debhelper (0.86) unstable; urgency=low + + * dh_compress: don't try to re-compress *.gz files. Eliminates warning + messages in some cases, shouldn't actually change the result at all. + + -- Joey Hess Mon, 27 Apr 1998 15:21:33 -0700 + debhelper (0.85) unstable; urgency=low * Moved a few things around that were broken by Che's patch: diff --git a/dh_strip b/dh_strip index 57725d7..daea754 100755 --- a/dh_strip +++ b/dh_strip @@ -15,7 +15,7 @@ for PACKAGE in $DH_DOPACKAGES; do doit "strip --strip-unneeded $file" ;; *ELF*executable*) - doit "strip --remove-section=comment --remove-section=note $file" + doit "strip --remove-section=.comment --remove-section=.note $file" ;; esac done