summaryrefslogtreecommitdiff
path: root/dh_installdeb
diff options
context:
space:
mode:
authorjoey <joey>1999-09-29 00:09:42 +0000
committerjoey <joey>1999-09-29 00:09:42 +0000
commita9b331f789c412236016303e21b4abfb83f9aa62 (patch)
tree7feb991bfd38b03a2254a8f52a61f697ce2fe67c /dh_installdeb
parent3b8ba525e95675349ed84bb3e453f36f81cf5134 (diff)
r284: * Enhanced debconf support -- the database is now cleaned up on package
purge. * Broke all debconf support off into a dh_installdebconf script. This seems conceptually a little cleaner.
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");