~ubuntu-branches/debian/experimental/geany/experimental

« back to all changes in this revision

Viewing changes to icons/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Damián Viano
  • Date: 2008-05-02 11:37:45 UTC
  • mfrom: (1.2.1 upstream) (3.1.6 hardy)
  • Revision ID: james.westby@ubuntu.com-20080502113745-xzp4g6dmovrpoj17
Tags: 0.14-1
New upstream release (Closes: #478126)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
SUBDIRS =                                                               \
 
2
        16x16
 
3
 
 
4
gtk_update_icon_cache = gtk-update-icon-cache -f -t $(datadir)/icons/hicolor
 
5
 
 
6
install-data-hook:
 
7
        @-if test -z "$(DESTDIR)"; then                                 \
 
8
                echo "Updating Gtk icon cache.";                        \
 
9
                $(gtk_update_icon_cache);                               \
 
10
        else                                                            \
 
11
                echo "*** Icon cache not updated. Remember to run:";    \
 
12
                echo "***";                                             \
 
13
                echo "***   $(gtk_update_icon_cache)";                  \
 
14
                echo "***";                                             \
 
15
        fi
 
16
 
 
17
uninstall-local:
 
18
        rm -f $(DESTDIR)$(datadir)/icons/hicolor/icon-theme.cache;
 
19