From 11c1066016c8230b80a84d9525cba5fcc86d80c1 Mon Sep 17 00:00:00 2001 From: Poul-Henning Kamp Date: Wed, 2 Oct 2002 13:52:36 +0000 Subject: [PATCH] PC98 is not a true architecture, but a subarchitecture of i386, so we need to use a slightly differnt command to PC98::buildworld. --- Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 54b1262a1556..0f4dbbf03a61 100644 --- a/Makefile +++ b/Makefile @@ -221,7 +221,7 @@ universe: @echo "--------------------------------------------------------------" @echo ">>> make universe started on ${STARTTIME}" @echo "--------------------------------------------------------------" -.for arch in i386 sparc64 pc98 alpha ia64 +.for arch in i386 sparc64 alpha ia64 @printf ">> ${arch} started on `LC_ALL=C date`\n" -cd ${.CURDIR} && make ${JFLAG} buildworld TARGET_ARCH=${arch} \ __MAKE_CONF=/dev/null \ @@ -234,6 +234,9 @@ universe: cd ${.CURDIR} && make buildkernels TARGET_ARCH=${arch} JFLAG="${JFLAG}" @printf ">> ${arch} ended on `LC_ALL=C date`\n" .endfor + -cd ${.CURDIR} && make buildworld TARGET=pc98 TARGET_ARCH=i386 \ + __MAKE_CONF=/dev/null \ + > _.pc98.buildworld 2>&1 @echo "--------------------------------------------------------------" @printf ">>> make universe completed on `LC_ALL=C date`\n (started ${STARTTIME})\n" @echo "--------------------------------------------------------------"