mirror of
https://git.freebsd.org/ports.git
synced 2025-06-27 07:30:32 -04:00
- Bump PORTREVISION for package change PR: 202724 Submitted by: <bigangrygreenguy@gmail.com>
14 lines
533 B
Text
14 lines
533 B
Text
--- 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");
|
|
|