From 359fc25aad14af2b69b60dbbc19d10cb28c85b9c Mon Sep 17 00:00:00 2001 From: Ting-Wei Lan Date: Thu, 19 Feb 2015 00:16:15 +0800 Subject: build: Don't use shopt in the build command shopt command only works in bash, so we should not use it in gtk/Makefile.am. https://bugzilla.gnome.org/show_bug.cgi?id=743647 --- gtk/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtk/Makefile.am b/gtk/Makefile.am index 721a76d5a2..67d8533688 100644 --- a/gtk/Makefile.am +++ b/gtk/Makefile.am @@ -1158,10 +1158,10 @@ gtk.gresource.xml: Makefile.am n=`basename $$f`; \ echo " ui/$$n" >> $@; \ done; \ - 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 \ + test "$$f" = "$(srcdir)/icons/$$s/$$c/*.png" && continue; \ n=`basename $$f`; \ echo " icons/$$s/$$c/$$n" >> $@; \ done; \ -- cgit v1.2.1