summaryrefslogtreecommitdiff
path: root/postprocess
diff options
context:
space:
mode:
authorJan Holesovsky <kendy@collabora.com>2015-06-23 12:32:28 +0200
committerJan Holesovsky <kendy@collabora.com>2015-06-23 12:36:48 +0200
commit43a082f0bba799a9fc33071079f7a42932935e05 (patch)
tree2665d606046c18a74fb1c2444a282bd52165ece9 /postprocess
parent1b60c3d62deef02788d31c7d60ea1ab12323c150 (diff)
tdf#90790: Don't take galaxy as a reference icon set, it may be incomplete.
Some icons in galaxy are available only via a fallback, while the other themes can implement these icons directly; but they did not end up in the images_*.zip. Change-Id: Ifc937ebec7a1e38828672e65706150f50abe8703
Diffstat (limited to 'postprocess')
-rw-r--r--postprocess/CustomTarget_images.mk5
1 files changed, 3 insertions, 2 deletions
diff --git a/postprocess/CustomTarget_images.mk b/postprocess/CustomTarget_images.mk
index aba5afc591e1..de2c21d1f3dd 100644
--- a/postprocess/CustomTarget_images.mk
+++ b/postprocess/CustomTarget_images.mk
@@ -55,8 +55,9 @@ $(packimages_DIR)/%.zip : \
$(packimages_DIR)/commandimagelist.ilst :
$(call gb_Output_announce,$(subst $(WORKDIR)/,,$@),$(true),PRL,1)
$(call gb_Helper_abbreviate_dirs, \
- find $(SRCDIR)/icon-themes/galaxy/cmd -name "*.png" -o -name "*.svg" | \
- sed "s#$(SRCDIR)/icon-themes/galaxy#%MODULE%#" | \
+ find $(SRCDIR)/icon-themes -name "*.png" -o -name "*.svg" | \
+ grep -e '/cmd/' | sed 's#^.*/icon-themes/[^/]*##' | sort | uniq | \
+ sed "s#^#%MODULE%#" | \
LC_ALL=C sort > $@.tmp && \
$(PERL) $(SRCDIR)/solenv/bin/diffmv.pl $@.tmp $@ \
$(if $(findstring s,$(MAKEFLAGS)),2> /dev/null))