diff options
Diffstat (limited to 'source/l/hicolor-icon-theme/doinst.sh')
-rw-r--r-- | source/l/hicolor-icon-theme/doinst.sh | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/source/l/hicolor-icon-theme/doinst.sh b/source/l/hicolor-icon-theme/doinst.sh index 46e76c00..5d59cebb 100644 --- a/source/l/hicolor-icon-theme/doinst.sh +++ b/source/l/hicolor-icon-theme/doinst.sh @@ -19,7 +19,9 @@ rm -f usr/share/icons/icon-theme.cache # Update hicolor theme cache: if [ -d usr/share/icons/hicolor ]; then - if [ -x /usr/bin/gtk-update-icon-cache ]; then - chroot . /usr/bin/gtk-update-icon-cache -f -t usr/share/icons/hicolor 1> /dev/null 2> /dev/null + if [ -e usr/share/icons/hicolor/icon-theme.cache ]; then # ONLY run this if there's already a cache!!! + if [ -x /usr/bin/gtk-update-icon-cache ]; then + chroot . /usr/bin/gtk-update-icon-cache -f -t usr/share/icons/hicolor 1> /dev/null 2> /dev/null + fi fi fi |