diff options
author | joey <joey> | 2003-08-18 01:21:26 +0000 |
---|---|---|
committer | joey <joey> | 2003-08-18 01:21:26 +0000 |
commit | 1f56418d00a8f406f53b06f3f0b1566e56c1feca (patch) | |
tree | bca84c111fe6befcc2fe93a438a58a57b53f7c12 /dh_fixperms | |
parent | 42c7a7a58ae32590ad3cc4928fb622e62922512b (diff) | |
download | debhelper-1f56418d00a8f406f53b06f3f0b1566e56c1feca.tar.gz |
r1590: * Converted several chown 0.0 to chown 0:0 for POSIX 200112.version_4.1.65
* dh_python: patch from Josselin to support packages only
shipping binary (.so) modules, and removal of any already byte-compiled
.py[co] found.
Diffstat (limited to 'dh_fixperms')
-rwxr-xr-x | dh_fixperms | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dh_fixperms b/dh_fixperms index 1a35c78d..34a385bc 100755 --- a/dh_fixperms +++ b/dh_fixperms @@ -53,7 +53,7 @@ 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"); + "2>/dev/null | xargs -0r chown --no-dereference 0:0"); complex_doit("find $tmp ! -type l $find_options -print0", "2>/dev/null | xargs -0r chmod go=rX,u+rw,a-s"); |