diff options
Diffstat (limited to 'autoscripts/postrm-menu-method')
-rw-r--r-- | autoscripts/postrm-menu-method | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/autoscripts/postrm-menu-method b/autoscripts/postrm-menu-method index 2e0faed7..0d573fd0 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 [ -x /usr/bin/update-menus ]; then update-menus; fi +if [ -x "`which update-menus 2>/dev/null`" ]; then update-menus ; fi |