summaryrefslogtreecommitdiff
path: root/dh_installdocs
diff options
context:
space:
mode:
authorjoey <joey>2003-08-18 01:21:26 +0000
committerjoey <joey>2003-08-18 01:21:26 +0000
commit1f56418d00a8f406f53b06f3f0b1566e56c1feca (patch)
treebca84c111fe6befcc2fe93a438a58a57b53f7c12 /dh_installdocs
parent42c7a7a58ae32590ad3cc4928fb622e62922512b (diff)
r1590: * Converted several chown 0.0 to chown 0:0 for POSIX 200112.
* 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_installdocs')
-rwxr-xr-xdh_installdocs2
1 files changed, 1 insertions, 1 deletions
diff --git a/dh_installdocs b/dh_installdocs
index b991162f..3fe3d0c4 100755
--- a/dh_installdocs
+++ b/dh_installdocs
@@ -125,7 +125,7 @@ foreach my $package (@{$dh{DOPACKAGES}}) {
doit("cp","-a",$doc,"$tmp/usr/share/doc/$package");
}
}
- doit("chown","-R","0.0","$tmp/usr/share/doc");
+ doit("chown","-R","0:0","$tmp/usr/share/doc");
doit("chmod","-R","go=rX","$tmp/usr/share/doc");
doit("chmod","-R","u+rw","$tmp/usr/share/doc");
}