summaryrefslogtreecommitdiff
path: root/dh_installdeb
diff options
context:
space:
mode:
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 fa45cd6f..d3eebe76 100755
--- a/dh_installdeb
+++ b/dh_installdeb
@@ -16,7 +16,7 @@ foreach $PACKAGE (@{$dh{DOPACKAGES}}) {
# Install debian install scripts.
# If any .debhelper files exist, add them into the scripts.
- foreach $file (qw{postinst preinst prerm postrm config}) {
+ foreach $file (qw{postinst preinst prerm postrm}) {
$f=pkgfile($PACKAGE,$file);
if ($f) {
if (-f "debian/$EXT$file.debhelper") {
@@ -46,7 +46,7 @@ foreach $PACKAGE (@{$dh{DOPACKAGES}}) {
}
# Install non-executable files
- foreach $file (qw{shlibs conffiles templates}) {
+ foreach $file (qw{shlibs conffiles}) {
$f=pkgfile($PACKAGE,$file);
if ($f) {
doit("install","-o","root","-g","root","-m",644,"-p",$f,"$TMP/DEBIAN/$file");