summaryrefslogtreecommitdiff
path: root/dh_installdeb
diff options
context:
space:
mode:
authorMartin Koeppe <mkoeppe@gmx.de>2015-01-08 18:39:56 +0100
committerNiels Thykier <niels@thykier.net>2015-01-08 20:45:46 +0100
commita660d37676fd2a1d06fe9e7f6570e9253a7ce7cd (patch)
treed6850c6b7b98195dec8ef16301c09a23410342a4 /dh_installdeb
parent0bf56fc00831503055e561f317bee183242f23fa (diff)
downloaddebhelper-a660d37676fd2a1d06fe9e7f6570e9253a7ce7cd.tar.gz
Add leading 0 to "mode" parameters
Signed-off-by: Niels Thykier <niels@thykier.net>
Diffstat (limited to 'dh_installdeb')
-rwxr-xr-xdh_installdeb4
1 files changed, 2 insertions, 2 deletions
diff --git a/dh_installdeb b/dh_installdeb
index 02961ad0..26c2b0c5 100755
--- a/dh_installdeb
+++ b/dh_installdeb
@@ -130,10 +130,10 @@ foreach my $package (@{$dh{DOPACKAGES}}) {
complex_doit("find $tmp/etc -type f -printf '/etc/%P\n' | LC_ALL=C sort >> $tmp/DEBIAN/conffiles");
# Anything found?
if (-z "$tmp/DEBIAN/conffiles") {
- doit("rm", "-f", "$tmp/DEBIAN/conffiles");
+ doit("rm","-f","$tmp/DEBIAN/conffiles");
}
else {
- doit("chmod", 644, "$tmp/DEBIAN/conffiles");
+ doit("chmod","0644","$tmp/DEBIAN/conffiles");
}
}
}