diff options
author | Chess Griffin <chess@chessgriffin.com> | 2010-05-12 17:38:01 +0200 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-12 17:38:01 +0200 |
commit | 924621b2d36ed0d87405d66353457f93f1ee0b58 (patch) | |
tree | 06fa2bf13122d5be256f137996746dde8c78b222 /desktop/obconf/doinst.sh | |
parent | 2fd43e7d2661a422d7a225db108e18a2eebffc7d (diff) | |
download | slackbuilds-924621b2d36ed0d87405d66353457f93f1ee0b58.tar.gz |
desktop/obconf: Updated for version 2.0.3
Diffstat (limited to 'desktop/obconf/doinst.sh')
-rw-r--r-- | desktop/obconf/doinst.sh | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/desktop/obconf/doinst.sh b/desktop/obconf/doinst.sh index 4557defa56..21e9945eb9 100644 --- a/desktop/obconf/doinst.sh +++ b/desktop/obconf/doinst.sh @@ -1,9 +1,13 @@ - -if [ -x usr/bin/update-desktop-database ]; then - usr/bin/update-desktop-database -q usr/share/applications +if [ -x /usr/bin/update-desktop-database ]; then + /usr/bin/update-desktop-database -q usr/share/applications >/dev/null 2>&1 fi -if [ -x usr/bin/update-mime-database ]; then - usr/bin/update-mime-database usr/share/mime >/dev/null 2>&1 +if [ -x /usr/bin/update-mime-database ]; then + /usr/bin/update-mime-database usr/share/mime >/dev/null 2>&1 fi +if [ -e usr/share/icons/hicolor/icon-theme.cache ]; then + if [ -x /usr/bin/gtk-update-icon-cache ]; then + /usr/bin/gtk-update-icon-cache usr/share/icons/hicolor >/dev/null 2>&1 + fi +fi
\ No newline at end of file |