git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@3414 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Adam Fedor 1998-12-07 17:59:00 +00:00
parent 6001c5040e
commit e05a648307
2 changed files with 2 additions and 3 deletions

View file

@ -5,8 +5,7 @@ Mon Dec 7 09:58:01 1998 Adam Fedor <fedor@ultra.doc.com>
* openapp.in (EXEEXT): Likewise.
* debugapp.in (EXEEXT): Likewise.
* aggregate.make (internal-all): Break if subproject make fails
(Is there a better way to get make to return an error?).
* aggregate.make (internal-all): Break if subproject make fails.
Mon Dec 7 16:10:00 1998 Richard Frith-Macdonald <richard@brainstrom.co.uk>

View file

@ -43,7 +43,7 @@ internal-all internal-install internal-uninstall internal-clean \
for f in $(SUBPROJECTS); do \
echo Making $$target in $$f...;\
if eval "(cd $$f; $(MAKE) -f $(MAKEFILE_NAME) --no-keep-going $$target)"; then \
:; else break gnustep_build_error; \
:; else exit 1; \
fi; \
done)