diff options
author | joey <joey> | 2000-07-21 00:05:35 +0000 |
---|---|---|
committer | joey <joey> | 2000-07-21 00:05:35 +0000 |
commit | 1d3b6f28c9aa8cf91b4f2f644ceeff01352c5b0b (patch) | |
tree | b97fbc3f1952865924b664be1b750f6ba2fd2e0a /dh_makeshlibs | |
parent | a7afc7fccd48b73037a32e511a219016ba9fee17 (diff) | |
download | debhelper-1d3b6f28c9aa8cf91b4f2f644ceeff01352c5b0b.tar.gz |
r360: * Never refer to root, always uid/gid "0". Closes: #67508
Diffstat (limited to 'dh_makeshlibs')
-rwxr-xr-x | dh_makeshlibs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dh_makeshlibs b/dh_makeshlibs index 237602b4..b37260f0 100755 --- a/dh_makeshlibs +++ b/dh_makeshlibs @@ -41,6 +41,6 @@ foreach $PACKAGE (@{$dh{DOPACKAGES}}) { if (-e "$TMP/DEBIAN/shlibs") { doit("chmod",644,"$TMP/DEBIAN/shlibs"); - doit("chown","root.root","$TMP/DEBIAN/shlibs"); + doit("chown","0.0","$TMP/DEBIAN/shlibs"); } } |