summaryrefslogtreecommitdiff
path: root/postprocess
diff options
context:
space:
mode:
authorJan Holesovsky <kendy@collabora.com>2015-06-23 12:32:28 +0200
committerAndras Timar <andras.timar@collabora.com>2015-08-06 12:51:38 +0200
commit6ee7188431ff433affd01d65cf397696990fe637 (patch)
tree8dea6fef9224cdbbf3c090556a6679e81cc1db19 /postprocess
parentd6615bd592bdfe2095aca77e4d38b2cd6fdd1b0b (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 Reviewed-on: https://gerrit.libreoffice.org/16426 Reviewed-by: Adolfo Jayme Barrientos <fitojb@ubuntu.com> Tested-by: Adolfo Jayme Barrientos <fitojb@ubuntu.com>
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))