diff options
author | Heinz Wiesinger <pprkut@liwjatan.at> | 2010-06-28 13:04:07 -0400 |
---|---|---|
committer | dsomero <xgizzmo@slackbuilds.org> | 2010-06-28 13:04:07 -0400 |
commit | fe1b3f05fc6b1524fb995ab83eacd55e5fce5161 (patch) | |
tree | 715f265c15cbf0b30d306d3d24c35622e28c3646 /office/eqonomize/doinst.sh | |
parent | 087086973ab517d57d51388fe44c9525f11589f6 (diff) | |
download | slackbuilds-fe1b3f05fc6b1524fb995ab83eacd55e5fce5161.tar.gz |
office/eqonomize: Update hicolor icon cache in doinst.sh.
Signed-off-by: dsomero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'office/eqonomize/doinst.sh')
-rw-r--r-- | office/eqonomize/doinst.sh | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/office/eqonomize/doinst.sh b/office/eqonomize/doinst.sh index c9f42484ad..9830478e8c 100644 --- a/office/eqonomize/doinst.sh +++ b/office/eqonomize/doinst.sh @@ -1,8 +1,14 @@ -if [ -x usr/bin/update-desktop-database ]; then - usr/bin/update-desktop-database usr/share/applications >/dev/null 2>&1 +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 |