]> git.donarmstrong.com Git - debhelper.git/commitdiff
r83: Initial Import
authorjoey <joey>
Tue, 17 Aug 1999 04:51:01 +0000 (04:51 +0000)
committerjoey <joey>
Tue, 17 Aug 1999 04:51:01 +0000 (04:51 +0000)
debian/changelog
dh_strip

index 0103f06edd690ba88ac9df6827e91aa547b40351..148c6ea497c201dec400cd60ee80f9928932a7b9 100644 (file)
@@ -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 <joeyh@master.debian.org>  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:
index 57725d7015fff9ddf48d7dbf169ca6b107ea2fdc..daea754c16ceff4859319b0d576abe4dbd2ab62c 100755 (executable)
--- 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