From 4d3520610ec82a80601a1590861dc9505e2813b4 Mon Sep 17 00:00:00 2001 From: Keith Packard Date: Tue, 28 Jan 2003 20:56:18 +0000 Subject: [PATCH] Bug #2 If a sub-make fails, then the build will still happily continue. I will attach a patch I have been using in the Debian package for a while. --- Makefile.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.in b/Makefile.in index bfb24c8..69ea96c 100644 --- a/Makefile.in +++ b/Makefile.in @@ -29,7 +29,7 @@ include $(TOPDIR)/config/Makedefs DIRS = src fc-cache fc-list fontconfig all install clean:: - for d in $(DIRS); do (cd $$d && $(MAKE) $@); done + for d in $(DIRS); do (cd $$d && $(MAKE) $@) || exit 1; done # # create fonts.conf file -- 2.7.4