summaryrefslogtreecommitdiffstats
path: root/desktop/obconf/doinst.sh
diff options
context:
space:
mode:
Diffstat (limited to 'desktop/obconf/doinst.sh')
-rw-r--r--desktop/obconf/doinst.sh14
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