summaryrefslogtreecommitdiff
path: root/dh_installdocs
diff options
context:
space:
mode:
Diffstat (limited to 'dh_installdocs')
-rwxr-xr-xdh_installdocs16
1 files changed, 8 insertions, 8 deletions
diff --git a/dh_installdocs b/dh_installdocs
index ad50423c..5a3ef709 100755
--- a/dh_installdocs
+++ b/dh_installdocs
@@ -15,7 +15,7 @@ foreach $PACKAGE (@{$dh{DOPACKAGES}}) {
# If this is a symlink, leave it alone.
if ( ! -d "$TMP/usr/share/doc/$PACKAGE" &&
! -l "$TMP/usr/share/doc/$PACKAGE") {
- doit("install","-g","root","-o","root","-d","$TMP/usr/share/doc/$PACKAGE");
+ doit("install","-g",0,"-o",0,"-d","$TMP/usr/share/doc/$PACKAGE");
}
undef @docs;
@@ -30,7 +30,7 @@ foreach $PACKAGE (@{$dh{DOPACKAGES}}) {
if (@docs) {
doit("cp", "-a",@docs,"$TMP/usr/share/doc/$PACKAGE/");
- doit("chown","-R","root.root","$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");
}
@@ -41,18 +41,18 @@ foreach $PACKAGE (@{$dh{DOPACKAGES}}) {
$readme_debian=pkgfile($PACKAGE,'README.debian');
}
if ($readme_debian) {
- doit("install","-g","root","-o","root","-m","644","-p","$readme_debian",
+ doit("install","-g",0,"-o",0,"-m","644","-p","$readme_debian",
"$TMP/usr/share/doc/$PACKAGE/README.Debian");
}
$todo=pkgfile($PACKAGE,'TODO');
if ($todo) {
if (isnative($PACKAGE)) {
- doit("install","-g","root","-o","root","-m","644","-p",$todo,
+ doit("install","-g",0,"-o",0,"-m","644","-p",$todo,
"$TMP/usr/share/doc/$PACKAGE/TODO");
}
else {
- doit("install","-g","root","-o","root","-m","644","-p",$todo,
+ doit("install","-g",0,"-o",0,"-m","644","-p",$todo,
"$TMP/usr/share/doc/$PACKAGE/TODO.Debian");
}
}
@@ -65,7 +65,7 @@ foreach $PACKAGE (@{$dh{DOPACKAGES}}) {
$copyright="debian/copyright";
}
if ($copyright) {
- doit("install","-g","root","-o","root","-m","644","-p",$copyright,
+ doit("install","-g",0,"-o",0,"-m","644","-p",$copyright,
"$TMP/usr/share/doc/$PACKAGE/copyright");
}
@@ -106,11 +106,11 @@ foreach $PACKAGE (@{$dh{DOPACKAGES}}) {
if (%doc_ids) {
if (! -d "$TMP/usr/share/doc-base/") {
- doit("install","-g","root","-o","root","-d","$TMP/usr/share/doc-base/");
+ doit("install","-g",0,"-o",0,"-d","$TMP/usr/share/doc-base/");
}
}
foreach my $fn (keys %doc_ids) {
- doit("install","-g","root","-o","root","-m644","-p","debian/$fn",
+ doit("install","-g",0,"-o",0,"-m644","-p","debian/$fn",
"$TMP/usr/share/doc-base/$doc_ids{$fn}");
if (! $dh{NOSCRIPTS}) {
autoscript($PACKAGE,"postinst","postinst-doc-base",