diff options
author | joey <joey> | 1999-08-17 05:01:28 +0000 |
---|---|---|
committer | joey <joey> | 1999-08-17 05:01:28 +0000 |
commit | 8162f479ea8540086c6f0415abbadeb39ce823b8 (patch) | |
tree | ede016ca5e424da457323479b612ea34f79b1d93 /dh_installemacsen | |
parent | 19f377de13cb281cf19fe829e79a2498b7465002 (diff) | |
download | debhelper-8162f479ea8540086c6f0415abbadeb39ce823b8.tar.gz |
r125: Initial Import
Diffstat (limited to 'dh_installemacsen')
-rwxr-xr-x | dh_installemacsen | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/dh_installemacsen b/dh_installemacsen index e87cecef..008d9531 100755 --- a/dh_installemacsen +++ b/dh_installemacsen @@ -27,8 +27,10 @@ for PACKAGE in $DH_DOPACKAGES; do if [ "$emacsen_install" -o "$emacsen_remove" ]; then if [ ! "$DH_NOSCRIPTS" ]; then - autoscript "postinst" "postinst-emacsen" - autoscript "prerm" "prerm-emacsen" + autoscript "postinst" "postinst-emacsen" \ + "s/#PACKAGE#/$PACKAGE/" + autoscript "prerm" "prerm-emacsen" \ + "s/#PACKAGE#/$PACKAGE/" fi fi done |