Skip to content
Snippets Groups Projects
Commit fe44f7ea authored by sof's avatar sof
Browse files

[project @ 2002-06-15 14:45:53 by sof]

all: restore old behaviour of exiting upon 'boot' failure in a SUBDIR
parent 671dfe67
No related branches found
No related tags found
No related merge requests found
...@@ -332,6 +332,7 @@ all :: ...@@ -332,6 +332,7 @@ all ::
for i in $(SUBDIRS); do \ for i in $(SUBDIRS); do \
if [ -d $$i ]; then \ if [ -d $$i ]; then \
$(MAKE) -C $$i boot; \ $(MAKE) -C $$i boot; \
if [ $$? -eq 0 -o $$x_on_err -eq 0 ] ; then true; else exit 1; fi; \
$(MAKE) -C $$i all; \ $(MAKE) -C $$i all; \
if [ $$? -eq 0 -o $$x_on_err -eq 0 ] ; then true; else exit 1; fi; \ if [ $$? -eq 0 -o $$x_on_err -eq 0 ] ; then true; else exit 1; fi; \
fi; \ fi; \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment