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

index 297933eb0d2e705158c62c2305b64317847a38f8..9ea49a2e377212364340e4f3dfd95116b7219b82 100644 (file)
@@ -1,3 +1,11 @@
+debhelper (1.2.72) unstable; urgency=low
+
+  * dh_installemacsen: use debian/package.emacsen-startup, not
+    debian/package.emacsen-init. The former has always been documented to
+    work on the man page (closes: #38898).
+
+ -- Joey Hess <joeyh@master.debian.org>  Thu,  3 Jun 1999 14:16:57 -0700
+
 debhelper (1.2.71) unstable; urgency=low
 
   * Fixed a typo (closes: #38881)
index 0b2f6b8093488726a0654d0080091475784867a3..778720a14b6b9617bd7bbcdbadd99221c400e24d 100755 (executable)
@@ -18,7 +18,7 @@ foreach $PACKAGE (@{$dh{DOPACKAGES}}) {
 
        $emacsen_install=pkgfile($PACKAGE,"emacsen-install");
        $emacsen_remove=pkgfile($PACKAGE,"emacsen-remove");
-       $emacsen_init=pkgfile($PACKAGE,"emacsen-init");
+       $emacsen_startup=pkgfile($PACKAGE,"emacsen-startup");
 
        if ($emacsen_install ne '') {
                if (! -d "$TMP/usr/lib/emacsen-common/packages/install") {
@@ -34,11 +34,11 @@ foreach $PACKAGE (@{$dh{DOPACKAGES}}) {
                doit("install","$emacsen_remove","$TMP/usr/lib/emacsen-common/packages/remove/$PACKAGE");
        }
        
-       if ($emacsen_init ne '') {
+       if ($emacsen_startup ne '') {
                if (! -d "$TMP/etc/$dh{flavor}/site-start.d/") {
                        doit("install","-d","$TMP/etc/$dh{flavor}/site-start.d/");
                }
-               doit("install",$emacsen_init,"$TMP/etc/$dh{flavor}/site-start.d/$dh{number}$PACKAGE.el");
+               doit("install",$emacsen_startup,"$TMP/etc/$dh{flavor}/site-start.d/$dh{number}$PACKAGE.el");
        }
 
        if ($emacsen_install ne '' || $emacsen_remove ne '') {