]> git.donarmstrong.com Git - debhelper.git/commitdiff
r274: * dh_installemacsen: the script fragments it generates now test for the
authorjoey <joey>
Sun, 12 Sep 1999 19:58:04 +0000 (19:58 +0000)
committerjoey <joey>
Sun, 12 Sep 1999 19:58:04 +0000 (19:58 +0000)
     existance of emacs-package-install/remove before calling them. Though
     a strict reading of the emacsen policy indicates that such a test
     shouldn't be needed, there may be edge cases (cf bug 44924), where it
     is.

autoscripts/postinst-emacsen
autoscripts/prerm-emacsen
debian/changelog

index 45f1deeca9c14c637b924c0b0db2282f6fb789da..48bf26e78f341194d806cbc7b7b560161152db5a 100644 (file)
@@ -1 +1,3 @@
-/usr/lib/emacsen-common/emacs-package-install #PACKAGE#
+if [ -x /usr/lib/emacsen-common/emacs-package-install ]; then
+       /usr/lib/emacsen-common/emacs-package-install #PACKAGE#
+fi
index d11dafab77bad0c69708444dcf1f346067a8ecfa..8c3ca64c665411a13a7f6607306dc9d64139edf5 100644 (file)
@@ -1 +1,3 @@
-/usr/lib/emacsen-common/emacs-package-remove #PACKAGE#
+if [ -x /usr/lib/emacsen-common/emacs-package-remove ] ; then
+       /usr/lib/emacsen-common/emacs-package-remove #PACKAGE#
+fi
index c0e2b18f67bb1953506e11bdab469517054d84b5..b17b04364eeb4ed738046da13762043a05da7294 100644 (file)
@@ -1,3 +1,13 @@
+debhelper (2.0.46) unstable; urgency=low
+
+  * dh_installemacsen: the script fragments it generates now test for the
+    existance of emacs-package-install/remove before calling them. Though
+    a strict reading of the emacsen policy indicates that such a test
+    shouldn't be needed, there may be edge cases (cf bug 44924), where it
+    is.
+
+ -- Joey Hess <joeyh@master.debian.org>  Sun, 12 Sep 1999 12:54:37 -0700
+
 debhelper (2.0.45) unstable; urgency=low
 
   * dh_installdocs.1: clarified how the doc-id is determined. Closes: #44864