From d7c977f78cb1f71ff5b30a198dc04c64f00088d5 Mon Sep 17 00:00:00 2001 From: simonmar Date: Wed, 1 May 2002 13:11:24 +0000 Subject: [PATCH] [project @ 2002-05-01 13:11:24 by simonmar] Do 'make boot' then 'make all' as separate steps (fixes problem with parallel make). --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index e5b2eb7..97717f4 100644 --- a/Makefile +++ b/Makefile @@ -331,7 +331,8 @@ all :: @case '${MFLAGS}' in *-[ik]*) x_on_err=0;; *-r*[ik]*) x_on_err=0;; *) x_on_err=1;; esac; \ for i in $(SUBDIRS); do \ if [ -d $$i ]; then \ - $(MAKE) -C $$i boot all; \ + $(MAKE) -C $$i boot; \ + $(MAKE) -C $$i all; \ if [ $$? -eq 0 -o $$x_on_err -eq 0 ] ; then true; else exit 1; fi; \ fi; \ done -- 1.7.10.4