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.
This commit is contained in:
parent
3c0b3aa22c
commit
4d3520610e
|
@ -29,7 +29,7 @@ include $(TOPDIR)/config/Makedefs
|
||||||
DIRS = src fc-cache fc-list fontconfig
|
DIRS = src fc-cache fc-list fontconfig
|
||||||
|
|
||||||
all install clean::
|
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
|
# create fonts.conf file
|
||||||
|
|
Loading…
Reference in New Issue