]> git.donarmstrong.com Git - debhelper.git/commitdiff
r125: Initial Import
authorjoey <joey>
Tue, 17 Aug 1999 05:01:28 +0000 (05:01 +0000)
committerjoey <joey>
Tue, 17 Aug 1999 05:01:28 +0000 (05:01 +0000)
debian/changelog
dh_installemacsen

index a52e4fc517bde14c4027dfce0ca2ca49b38634f8..4ec7e846428d4869868e98e19743aedd8a89d9f5 100644 (file)
@@ -1,3 +1,10 @@
+debhelper (1.1.18) unstable; urgency=low
+
+  * dh_installemacsen: substitute package name for #PACKAGE# when setting
+    up postinst and prerm (#26560).
+
+ -- Joey Hess <joeyh@master.debian.org>  Tue,  8 Sep 1998 14:24:30 -0700
+
 debhelper (1.1.17) unstable; urgency=low
 
   * dh_strip: on Richard Braakman's advice, strip the .comment and .note
index e87cecef687151d8959fe318b84e7bd1997547d8..008d95311cd857d341254ce9c3485f5e0cb621cd 100755 (executable)
@@ -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