From 599f6c76b6478fc53800dccbdfb318c482971ac9 Mon Sep 17 00:00:00 2001 From: joey Date: Tue, 17 Aug 1999 05:11:20 +0000 Subject: [PATCH] r180: Initial Import --- debian/changelog | 10 ++++++++++ dh_fixperms | 8 ++++---- 2 files changed, 14 insertions(+), 4 deletions(-) diff --git a/debian/changelog b/debian/changelog index 2dc3d01..d32c282 100644 --- a/debian/changelog +++ b/debian/changelog @@ -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 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 diff --git a/dh_fixperms b/dh_fixperms index 6825ed6..fecf8ef 100755 --- a/dh_fixperms +++ b/dh_fixperms @@ -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} \\)"; } -- 2.39.5