From: joey Date: Tue, 17 Aug 1999 05:11:49 +0000 (+0000) Subject: r186: Initial Import X-Git-Tag: debian_version_0_1~57 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=70d0a9775002000820c6302d406e53e5598074d3;p=debhelper.git r186: Initial Import --- diff --git a/debian/changelog b/debian/changelog index bca74c8..b30b0f5 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +debhelper (1.2.48) unstable; urgency=low + + * dh_fixperms.1: improved documentation. (#34968) + + -- Joey Hess Tue, 23 Mar 1999 19:11:01 -0800 + debhelper (1.2.47) unstable; urgency=low * doc/README: updated the example of including debhelper shell script diff --git a/dh_fixperms b/dh_fixperms index fecf8ef..665becc 100755 --- a/dh_fixperms +++ b/dh_fixperms @@ -22,9 +22,9 @@ foreach $PACKAGE (@{$dh{DOPACKAGES}}) { } else { # Do it the hard way. - complex_doit("find $TMP ! \\( $dh{EXCLUDE_FIND} \\) -print0", + complex_doit("find $TMP ! -type l ! \\( $dh{EXCLUDE_FIND} \\) -print0", "2>/dev/null | xargs -0r chown root.root"); - complex_doit("find $TMP ! \\( $dh{EXCLUDE_FIND} \\) -print0", + complex_doit("find $TMP ! -type l ! \\( $dh{EXCLUDE_FIND} \\) -print0", "2>/dev/null | xargs -0r chmod go=rX,u+rw,a-s"); $find_options="! \\( $dh{EXCLUDE_FIND} \\)";