Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src Work around parallelism lossage, because .ORDER doesn't work...



details:   https://anonhg.NetBSD.org/src/rev/79b3f4248bf3
branches:  trunk
changeset: 516806:79b3f4248bf3
user:      tv <tv%NetBSD.org@localhost>
date:      Tue Oct 30 17:59:10 2001 +0000

description:
Work around parallelism lossage, because .ORDER doesn't work yet
(noted in PR bin/14404).  This will be fixed back to using .ORDER later.

diffstat:

 Makefile |  6 ++++--
 1 files changed, 4 insertions(+), 2 deletions(-)

diffs (20 lines):

diff -r bee0c5920601 -r 79b3f4248bf3 Makefile
--- a/Makefile  Tue Oct 30 17:10:50 2001 +0000
+++ b/Makefile  Tue Oct 30 17:59:10 2001 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: Makefile,v 1.144 2001/10/29 19:48:35 tv Exp $
+#      $NetBSD: Makefile,v 1.145 2001/10/30 17:59:10 tv Exp $
 
 # This is the top-level makefile for building NetBSD. For an outline of
 # how to build a snapshot or release, as well as other release engineering
@@ -131,7 +131,9 @@
        @echo "Build already installed into ${DESTDIR}"
 .else
        @echo -n "Build started at: " && date
-       @${MAKE} ${_J} ${_M} ${BUILDTARGETS}
+.for tgt in ${BUILDTARGETS}
+       ${MAKE} ${_J} ${_M} ${tgt}
+.endfor
        @echo -n "Build finished at: " && date
 .endif
 



Home | Main Index | Thread Index | Old Index