From 6f573248c3898a7b0c72c3fa651ddcd6d99f6c43 Mon Sep 17 00:00:00 2001 From: ru Date: Fri, 31 Oct 2003 13:15:07 +0000 Subject: Combining "all" and "install" in one invocation is a very bad idea as conditional evaluation is done only once in this case, and this may not account for the fact that some conditionals would be evaluated differently if "all" has already been run, like is the case with the loader.help existance check in sys/boot/alpha/common/Makefile.common, beforeinstall target. This should fix Alpha snapshot builds. --- release/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'release/Makefile') diff --git a/release/Makefile b/release/Makefile index 31786c2..3e38f96 100644 --- a/release/Makefile +++ b/release/Makefile @@ -669,7 +669,8 @@ release.9: .if exists(${.CURDIR}/../sys/boot/${TARGET}/loader) cd ${.CURDIR}/../sys/boot/${TARGET}/loader; \ ${WMAKE} clean cleandepend; \ - ${WMAKE} -DNOMAN -DNOFORTH all install DESTDIR=${RD}/trees/special + ${WMAKE} -DNOMAN -DNOFORTH all; \ + ${WMAKE} -DNOMAN -DNOFORTH install DESTDIR=${RD}/trees/special .endif cp ${RD}/trees/base/etc/disktab /etc rm -rf ${RD}/mfsfd -- cgit v1.1