diff options
author | Srinivasa Ragavan <sragavan@src.gnome.org> | 2007-05-14 12:21:47 +0800 |
---|---|---|
committer | Srinivasa Ragavan <sragavan@src.gnome.org> | 2007-05-14 12:21:47 +0800 |
commit | 61c3a68a0cceb3ba7ea7f17e79ec10ebd2ee1778 (patch) | |
tree | 20a4891ea89ea8ce3f0f8f8e05c95930658df317 /art | |
parent | 1c4ed07afe332e6b95d7578323f23086831f917b (diff) | |
download | gsoc2013-evolution-61c3a68a0cceb3ba7ea7f17e79ec10ebd2ee1778.tar.gz gsoc2013-evolution-61c3a68a0cceb3ba7ea7f17e79ec10ebd2ee1778.tar.zst gsoc2013-evolution-61c3a68a0cceb3ba7ea7f17e79ec10ebd2ee1778.zip |
Fix for bug #435610
svn path=/trunk/; revision=33536
Diffstat (limited to 'art')
-rw-r--r-- | art/ChangeLog | 7 | ||||
-rw-r--r-- | art/Makefile.am | 6 |
2 files changed, 11 insertions, 2 deletions
diff --git a/art/ChangeLog b/art/ChangeLog index dfdd81939f..b23b8ece56 100644 --- a/art/ChangeLog +++ b/art/ChangeLog @@ -1,3 +1,10 @@ +2007-05-03 David Farning <dfarning@gmail.com> + + ** Fix for bug #435610 + + * art/Makefile.am (update-icon-cache): fix gtk-update-icon-cache + for uninstall-hook. + 2007-05-11 Jakub Steiner <jimmac@ximian.com> ** Fix for bug #398145 diff --git a/art/Makefile.am b/art/Makefile.am index 8428795c1d..88202718ca 100644 --- a/art/Makefile.am +++ b/art/Makefile.am @@ -33,12 +33,14 @@ images_DATA = \ plus.png \ minus.png -install-data-hook: +install-data-hook: update-icon-cache +uninstall-hook: update-icon-cache +update-icon-cache: @-if test -z "$(DESTDIR)"; then \ echo "Updating Gtk icon cache."; \ $(gtk_update_icon_cache); \ else \ - echo "*** Icon cache not updated. After install, run this:"; \ + echo "*** Icon cache not updated. After (un)install, run this:"; \ echo "*** $(gtk_update_icon_cache)"; \ fi |