]> git.donarmstrong.com Git - debhelper.git/commitdiff
r292: * dh_compress: After compressing an executable, changes the file mode to
authorjoey <joey>
Wed, 6 Oct 1999 20:09:44 +0000 (20:09 +0000)
committerjoey <joey>
Wed, 6 Oct 1999 20:09:44 +0000 (20:09 +0000)
     644. Executable .gz files are silly. Closes: #46383

debian/changelog
dh_compress

index 344bc542818ed50707b6868acdb9cddc50838f64..236649e99c73a0551bc5fda1f6ca3a00597e00f4 100644 (file)
@@ -1,3 +1,10 @@
+debhelper (2.0.60) unstable; urgency=low
+
+  * dh_compress: After compressing an executable, changes the file mode to
+    644. Executable .gz files are silly. Closes: #46383
+
+ -- Joey Hess <joeyh@master.debian.org>  Wed,  6 Oct 1999 13:05:14 -0700
+
 debhelper (2.0.59) unstable; urgency=low
 
   * dh_installdocs: if $TMP/usr/share/doc/$PACKAGE is a broken symlink,
index 1312bf46afd27880834688dcb4e81b82a625e1b2..a01f5d15265583a6e219e3d7b5d9f03bd92c7a4e 100755 (executable)
@@ -86,6 +86,9 @@ foreach $PACKAGE (@{$dh{DOPACKAGES}}) {
        }
 
        if (@f) {
+               # Make executables not be anymore.
+               xargs(\@f,"chmod","a-x");
+               
                xargs(\@f,"gzip","-9f");
        }