* icons/Makefile.am: Be sure to run gtk-update-icon-cache after
installing new icons into the hicolor icon theme (skipped if $DESTDIR
is set).
(Old svn revision: 20832)
2006-04-09 Benedikt Meurer <benny@xfce.org>
+ * icons/Makefile.am: Be sure to run gtk-update-icon-cache after
+ installing new icons into the hicolor icon theme (skipped if $DESTDIR
+ is set).
+
+2006-04-09 Benedikt Meurer <benny@xfce.org>
+
* docs/README.thunarrc, thunar/thunar-preferences.c: Add new option
"MiscSingleClickTimeout", which specifies the delay after which
items are automatically selected in single-click mode.
48x48 \
scalable
+gtk_update_icon_cache = gtk-update-icon-cache -f -t $(datadir)/icons/hicolor
+
+install-data-hook:
+ @-if test -z "$(DESTDIR)"; then \
+ echo "Updating Gtk icon cache."; \
+ $(gtk_update_icon_cache); \
+ else \
+ echo "*** Icon cache not updated. Remember to run:"; \
+ echo "***"; \
+ echo "*** $(gtk_update_icon_cache)"; \
+ echo "***"; \
+ fi
+
# vi:set ts=8 sw=8 noet ai nocindent syntax=automake: