From: Klaus Ethgen Date: Tue, 12 Dec 2017 12:22:32 +0000 (+0100) Subject: Catch build errors in this special case X-Git-Tag: v1.4~11 X-Git-Url: http://geeqie.org/cgi-bin/gitweb.cgi?p=geeqie.git;a=commitdiff_plain;h=0577825783c2ac5c4496b4dfe8a31de8e5ba2cf1 Catch build errors in this special case Unfortunately, Debian decided to just report that to there own repository with bug number #883526 but does not report it upstream. However, that will fix the "bug". --- diff --git a/src/Makefile.am b/src/Makefile.am index ad244583..558c8ee1 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -60,7 +60,7 @@ ICON_PAIRS = \ icon_tabcomp $(srcdir)/ui_tabcomp.png ui_icons.h: $(extra_ICONS) Makefile.in - @(echo '/* Auto generated file, do not edit */'; echo; \ + @(set -e; echo '/* Auto generated file, do not edit */'; echo; \ echo '#ifndef UI_ICONS_H'; \ echo '#define UI_ICONS_H'; echo; \ $(GDK_PIXBUF_CSOURCE) --raw --extern --build-list $(ICON_PAIRS); \