[gtk+] Also bundle icons in status/ as resources



commit 8e8a94bc23b782777d3071d10c7847c5b49442d8
Author: Lars Uebernickel <lars uebernickel canonical com>
Date:   Wed Jan 28 14:13:42 2015 +0000

    Also bundle icons in status/ as resources
    
    https://bugzilla.gnome.org/show_bug.cgi?id=743647

 gtk/Makefile.am |   11 +++++++----
 1 files changed, 7 insertions(+), 4 deletions(-)
---
diff --git a/gtk/Makefile.am b/gtk/Makefile.am
index 2daf367..738ca8e 100644
--- a/gtk/Makefile.am
+++ b/gtk/Makefile.am
@@ -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 \
-           n=`basename $$f`; \
-           echo "    <file>icons/$$s/actions/$$n</file>" >> $@; \
+       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/$$c/$$n</file>" >> $@; \
+           done; \
          done; \
        done; \
        for f in $(srcdir)/inspector/*.ui; do \


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]