diff options
Diffstat (limited to 'autoscripts/postrm-menu-method')
-rw-r--r-- | autoscripts/postrm-menu-method | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/autoscripts/postrm-menu-method b/autoscripts/postrm-menu-method index 3270b7c7..ffa1e486 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 test -x /usr/bin/update-menus ; then update-menus; fi +if [ "$1" = "remove" ] && [ -f "$inst" ]; then chmod a-x $inst ; fi +if [ -x "`which update-menus 2>/dev/null`" ]; then update-menus ; fi |