diff options
author | joey <joey> | 1999-08-17 05:08:37 +0000 |
---|---|---|
committer | joey <joey> | 1999-08-17 05:08:37 +0000 |
commit | 445640239aa47534554f20494ff969ef8be81ae4 (patch) | |
tree | a38c0e1d524a9a6b2a56524bdc17e2ad1d15b026 | |
parent | 61fc7ffe47681eed509bf441fbbc9108775c5f43 (diff) | |
download | debhelper-445640239aa47534554f20494ff969ef8be81ae4.tar.gz |
r163: Initial Import
-rw-r--r-- | autoscripts/postinst-menu | 2 | ||||
-rw-r--r-- | autoscripts/postrm-menu-method | 2 | ||||
-rw-r--r-- | debian/changelog | 6 |
3 files changed, 8 insertions, 2 deletions
diff --git a/autoscripts/postinst-menu b/autoscripts/postinst-menu index 2b0f740c..2be88247 100644 --- a/autoscripts/postinst-menu +++ b/autoscripts/postinst-menu @@ -1 +1 @@ -if text -x /usr/bin/update-menus ; then update-menus ; fi +if test -x /usr/bin/update-menus ; then update-menus ; fi diff --git a/autoscripts/postrm-menu-method b/autoscripts/postrm-menu-method index a6682fee..3270b7c7 100644 --- a/autoscripts/postrm-menu-method +++ b/autoscripts/postrm-menu-method @@ -1,3 +1,3 @@ inst=/etc/menu-methods/#PACKAGE# if [ "$1" = "remove" -a -f "$inst" ]; then chmod a-x $inst ; fi -if text -x /usr/bin/update-menus ; then update-menus; fi +if test -x /usr/bin/update-menus ; then update-menus; fi diff --git a/debian/changelog b/debian/changelog index cd5bdff1..8f952159 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +debhelper (1.2.27) unstable; urgency=low + + * autoscripts/*menu*: "test", not "text"! + + -- Joey Hess <joeyh@master.debian.org> Tue, 19 Jan 1999 15:18:52 -0800 + debhelper (1.2.26) unstable; urgency=low * dh_installdocs: use prerm-doc-base script fragement. Was using |