aboutsummaryrefslogtreecommitdiffstats
path: root/sysutils/debhelper/files/patch-dh_fixperms
blob: 27d901194676fe2292f15420ac03ececbd282991 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
--- dh_fixperms.orig    2015-09-19 09:06:22 UTC
+++ dh_fixperms
@@ -57,8 +57,10 @@ foreach my $package (@{$dh{DOPACKAGES}})
    }
 
    # General permissions fixing.
+   #complex_doit("find $tmp $find_options -print0",
+   #   "2>/dev/null | xargs -0r chown --no-dereference 0:0");
    complex_doit("find $tmp $find_options -print0",
-       "2>/dev/null | xargs -0r chown --no-dereference 0:0");
+       "2>/dev/null | xargs -0r chown 0:0");
    complex_doit("find $tmp ! -type l $find_options -print0",
        "2>/dev/null | xargs -0r chmod go=rX,u+rw,a-s");