Also bundle icons in status/ as resources

https://bugzilla.gnome.org/show_bug.cgi?id=743647
This commit is contained in:
Lars Uebernickel 2015-01-28 14:13:42 +00:00
parent f3d95d05eb
commit 8e8a94bc23

View File

@ -1155,10 +1155,13 @@ gtk.gresource.xml: Makefile.am
n=`basename $$f`; \
echo " <file compressed='true'>ui/$$n</file>" >> $@; \
done; \
for s in 16x16 22x22 24x24 32x32; do \
for f in $(srcdir)/icons/$$s/actions/*.png; do \
shopt -s nullglob; \
for s in 16x16 22x22 24x24 32x32 48x48; do \
for c in actions status; do \
for f in $(srcdir)/icons/$$s/$$c/*.png; do \
n=`basename $$f`; \
echo " <file>icons/$$s/actions/$$n</file>" >> $@; \
echo " <file>icons/$$s/$$c/$$n</file>" >> $@; \
done; \
done; \
done; \
for f in $(srcdir)/inspector/*.ui; do \