diff options
author | raveit65 <[email protected]> | 2015-10-07 15:45:41 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2015-10-07 15:45:41 +0200 |
commit | 156946474e0bca44939d308d52bab0c10ebb458c (patch) | |
tree | ecf2534a47015625190bfcdf4704882a5c0096c5 /icons | |
parent | 17b3540cecfa6d5f669ff510ccc4d225b909e1f7 (diff) | |
download | mate-desktop-156946474e0bca44939d308d52bab0c10ebb458c.tar.bz2 mate-desktop-156946474e0bca44939d308d52bab0c10ebb458c.tar.xz |
remove iconcache generation from make file to fix distcheckmate-desktop-1.11.0
Diffstat (limited to 'icons')
-rw-r--r-- | icons/Makefile.am | 19 |
1 files changed, 2 insertions, 17 deletions
diff --git a/icons/Makefile.am b/icons/Makefile.am index 0db7ca0..c869173 100644 --- a/icons/Makefile.am +++ b/icons/Makefile.am @@ -25,21 +25,6 @@ EXTRA_DIST = \ ############################################################################### -gtk_update_icon_cache = gtk-update-icon-cache -f -t - -update-icon-cache: - @-if test -z "$(DESTDIR)"; then \ - echo "Updating Gtk icon cache."; \ - for theme in $(public_icons_themes); do \ - $(gtk_update_icon_cache) $(datadir)/icons/$$theme; \ - done; \ - else \ - echo "*** Icon cache not updated. After (un)install, run this:"; \ - for theme in $(public_icons_themes); do \ - echo "*** $(gtk_update_icon_cache) $(datadir)/icons/$$theme"; \ - done; \ - fi - install-icons: for icon in $(public_icons); do \ THEME=`echo $$icon | cut -d_ -f1`; \ @@ -59,6 +44,6 @@ uninstall-icons: rm -f $(DESTDIR)$(datadir)/icons/$$THEME/$$SIZE/$$CONTEXT/$$ICONFILE; \ done -install-data-local: install-icons update-icon-cache +install-data-local: install-icons -uninstall-local: uninstall-icons update-icon-cache +uninstall-local: uninstall-icons |