aboutsummaryrefslogtreecommitdiffstats
path: root/data
diff options
context:
space:
mode:
authorDavyd Madeley <davyd@madeley.id.au>2009-02-27 02:37:21 +0800
committerXavier Claessens <xclaesse@src.gnome.org>2009-02-27 02:37:21 +0800
commit4daf4fbc374968bf8fc4fa83aac1d7cd7b9305f3 (patch)
tree27c5d878613cd402e3b5ba4e877280ba608c07a8 /data
parent9a4c723959e31a78db8316916e6d1009c411a7f1 (diff)
downloadgsoc2013-empathy-4daf4fbc374968bf8fc4fa83aac1d7cd7b9305f3.tar
gsoc2013-empathy-4daf4fbc374968bf8fc4fa83aac1d7cd7b9305f3.tar.gz
gsoc2013-empathy-4daf4fbc374968bf8fc4fa83aac1d7cd7b9305f3.tar.bz2
gsoc2013-empathy-4daf4fbc374968bf8fc4fa83aac1d7cd7b9305f3.tar.lz
gsoc2013-empathy-4daf4fbc374968bf8fc4fa83aac1d7cd7b9305f3.tar.xz
gsoc2013-empathy-4daf4fbc374968bf8fc4fa83aac1d7cd7b9305f3.tar.zst
gsoc2013-empathy-4daf4fbc374968bf8fc4fa83aac1d7cd7b9305f3.zip
Compile icon cache for private icon repo as well as public one
From: Davyd Madeley <davyd@madeley.id.au> svn path=/trunk/; revision=2534
Diffstat (limited to 'data')
-rw-r--r--data/icons/Makefile.am10
1 files changed, 10 insertions, 0 deletions
diff --git a/data/icons/Makefile.am b/data/icons/Makefile.am
index e3e0ffe12..d2c989d2b 100644
--- a/data/icons/Makefile.am
+++ b/data/icons/Makefile.am
@@ -13,6 +13,10 @@ public_icons = \
hicolor_apps_scalable_empathy.svg \
$(NULL)
+private_icons_themes = \
+ hicolor \
+ $(NULL)
+
private_icons = \
hicolor_actions_16x16_im-message-new.png \
hicolor_actions_22x22_im-message-new.png \
@@ -132,11 +136,17 @@ update-icon-cache:
for theme in $(public_icons_themes); do \
$(gtk_update_icon_cache) $(datadir)/icons/$$theme; \
done; \
+ for theme in $(private_icons_themes); do \
+ $(gtk_update_icon_cache) $(pkgdatadir)/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; \
+ for theme in $(private_icons_themes); do \
+ echo "*** $(gtk_update_icon_cache) $(pkgdatadir)/icons/$$theme"; \
+ done; \
fi
install-icons: