]> git.donarmstrong.com Git - debhelper.git/commitdiff
r180: Initial Import
authorjoey <joey>
Tue, 17 Aug 1999 05:11:20 +0000 (05:11 +0000)
committerjoey <joey>
Tue, 17 Aug 1999 05:11:20 +0000 (05:11 +0000)
debian/changelog
dh_fixperms

index 2dc3d0121c0dfacca046d03ec3bb8f5370ce0acd..d32c2826f1adb0f031d87771beceb78e29ad2de2 100644 (file)
@@ -1,3 +1,13 @@
+debhelper (1.2.43) unstable; urgency=low
+
+  * dh_compress.1: man page fixes (Closes: #33858).
+  * dh_compress: now it can handle compressing arbitrary numbers of files,
+    spawning gzip multiple times like xargs does, if necessary.
+    (Closes: #33860)
+  * Dh_Lib.pm: added xargs() command.
+
+ -- Joey Hess <joeyh@master.debian.org>  Tue,  9 Mar 1999 14:57:09 -0800
+
 debhelper (1.2.42) unstable; urgency=low
 
   * dh_m5sums: don't generate bogus md5sums file if the package contains no
index 6825ed6d54f5c2c619886dec0bddf2676445e819..fecf8ef4ae19aab999bce810aee8250a427d35d3 100755 (executable)
@@ -22,10 +22,10 @@ foreach $PACKAGE (@{$dh{DOPACKAGES}}) {
        }
        else {
                # Do it the hard way.
-               complex_doit("find $TMP ! \\( $dh{EXCLUDE_FIND} \\) -print0 \
-                       2>/dev/null | xargs -0r chown root.root");
-               complex_doit("find $TMP ! \\( $dh{EXCLUDE_FIND} \\) -print0 \
-                       2>/dev/null | xargs -0r chmod go=rX,u+rw,a-s");
+               complex_doit("find $TMP ! \\( $dh{EXCLUDE_FIND} \\) -print0",
+                       "2>/dev/null | xargs -0r chown root.root");
+               complex_doit("find $TMP ! \\( $dh{EXCLUDE_FIND} \\) -print0",
+                       "2>/dev/null | xargs -0r chmod go=rX,u+rw,a-s");
 
                $find_options="! \\( $dh{EXCLUDE_FIND} \\)";
        }