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

index bca74c8984380a4347a6fdd27e85e9c5bd036dfc..b30b0f530391ed89adba4a1041ec9bc844b3f30b 100644 (file)
@@ -1,3 +1,9 @@
+debhelper (1.2.48) unstable; urgency=low
+
+  * dh_fixperms.1: improved documentation. (#34968)
+
+ -- Joey Hess <joeyh@master.debian.org>  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
index fecf8ef4ae19aab999bce810aee8250a427d35d3..665becc384db28bb70ac669bccb94baad606b2ae 100755 (executable)
@@ -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} \\)";