diff options
Diffstat (limited to 'sysutils/debhelper/files/patch-dh_fixperms')
-rw-r--r-- | sysutils/debhelper/files/patch-dh_fixperms | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/sysutils/debhelper/files/patch-dh_fixperms b/sysutils/debhelper/files/patch-dh_fixperms new file mode 100644 index 000000000000..27d901194676 --- /dev/null +++ b/sysutils/debhelper/files/patch-dh_fixperms @@ -0,0 +1,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"); + |