diff options
Diffstat (limited to 'debian/shotwell-common.postrm')
-rw-r--r-- | debian/shotwell-common.postrm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/debian/shotwell-common.postrm b/debian/shotwell-common.postrm index 2390561..63c29ce 100644 --- a/debian/shotwell-common.postrm +++ b/debian/shotwell-common.postrm @@ -9,7 +9,9 @@ case "$1" in # # rebuild icon cache # - gtk-update-icon-cache /usr/share/icons/hicolor + if [ -x gtk-update-icon-cache ] ; then + gtk-update-icon-cache /usr/share/icons/hicolor + fi esac |