summaryrefslogtreecommitdiff
path: root/dh_installchangelogs
diff options
context:
space:
mode:
authorjoey <joey>2000-07-21 00:05:35 +0000
committerjoey <joey>2000-07-21 00:05:35 +0000
commit1d3b6f28c9aa8cf91b4f2f644ceeff01352c5b0b (patch)
treeb97fbc3f1952865924b664be1b750f6ba2fd2e0a /dh_installchangelogs
parenta7afc7fccd48b73037a32e511a219016ba9fee17 (diff)
r360: * Never refer to root, always uid/gid "0". Closes: #67508
Diffstat (limited to 'dh_installchangelogs')
-rwxr-xr-xdh_installchangelogs6
1 files changed, 3 insertions, 3 deletions
diff --git a/dh_installchangelogs b/dh_installchangelogs
index e6530191..89b6ff6b 100755
--- a/dh_installchangelogs
+++ b/dh_installchangelogs
@@ -38,20 +38,20 @@ foreach $PACKAGE (@{$dh{DOPACKAGES}}) {
if (! -d "$TMP/usr/share/doc/$PACKAGE") {
doit("install","-d","$TMP/usr/share/doc/$PACKAGE");
}
- doit("install","-o","root","-g","root","-p","-m644",$changelog,
+ doit("install","-o",0,"-g",0,"-p","-m644",$changelog,
"$TMP/usr/share/doc/$PACKAGE/$changelog_name");
if ($upstream) {
my $link_to;
if ($upstream=~m/\.html?$/i) {
# HTML changelog
- doit("install","-o","root","-g","root","-p","-m644",
+ doit("install","-o",0,"-g",0,"-p","-m644",
$upstream,"$TMP/usr/share/doc/$PACKAGE/changelog.html");
complex_doit("lynx -dump $upstream > $TMP/usr/share/doc/$PACKAGE/changelog");
$link_to='changelog.html';
}
else {
- doit("install","-o","root","-g","root","-p","-m644",
+ doit("install","-o",0,"-g",0,"-p","-m644",
$upstream,"$TMP/usr/share/doc/$PACKAGE/changelog");
$link_to='changelog';
}