]> git.donarmstrong.com Git - debhelper.git/commitdiff
r322: * dh_fixperms: chown symlinks as well as normal files. Closes: #51169.
authorjoey <joey>
Wed, 1 Dec 1999 21:40:28 +0000 (21:40 +0000)
committerjoey <joey>
Wed, 1 Dec 1999 21:40:28 +0000 (21:40 +0000)
debian/changelog
dh_fixperms

index 8822c1547e50e83024bcff731199c33027387e14..056d7b104949d94726e3b0a7814eca99b56eb2d0 100644 (file)
@@ -1,3 +1,9 @@
+debhelper (2.0.78) unstable; urgency=low
+
+  * dh_fixperms: chown symlinks as well as normal files. Closes: #51169.
+
+ -- Joey Hess <joeyh@debian.org>  Wed,  1 Dec 1999 13:34:06 -0800
+
 debhelper (2.0.77) unstable; urgency=low
 
   * dh_suidregister: Fixed a rather esoteric bug: If a file had multiple
index 0ad5c6050efef297c19b2191095a037e3021041a..98201e94423cc1ac22d36483fe2a47c23a7d141c 100755 (executable)
@@ -17,8 +17,8 @@ foreach $PACKAGE (@{$dh{DOPACKAGES}}) {
        }
 
        # General permissions fixing.
-       complex_doit("find $TMP ! -type l $find_options -print0",
-               "2>/dev/null | xargs -0r chown root.root");
+       complex_doit("find $TMP $find_options -print0",
+               "2>/dev/null | xargs -0r chown --no-dereference root.root");
        complex_doit("find $TMP ! -type l $find_options -print0",
                "2>/dev/null | xargs -0r chmod go=rX,u+rw,a-s");