From 2f74661cc7eb38e4c8723dc193a966bdeee83036 Mon Sep 17 00:00:00 2001 From: Peter Wemm Date: Tue, 23 Jan 2001 09:52:50 +0000 Subject: [PATCH] Provide backwards compatable recognition of ${KERNEL}. You should be able to use KERNEL= again with buildkernel, but it will point you at KERNCONF= and press on regardless. --- Makefile.inc1 | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/Makefile.inc1 b/Makefile.inc1 index 1b13707fef7e..8edc29b398bb 100644 --- a/Makefile.inc1 +++ b/Makefile.inc1 @@ -358,7 +358,12 @@ distribworld: # be set to cross-build, we have to make sure MACHINE is set # properly. +.if !defined(KERNCONF) && defined(KERNEL) +KERNCONF= ${KERNEL} +KERNWARN= yes +.else KERNCONF?= GENERIC +.endif INSTKERNNAME?= kernel # The only exotic MACHINE_ARCH/MACHINE combination valid at this @@ -392,6 +397,12 @@ buildkernel: .if empty(BUILDKERNELS) @echo ">>> ERROR: Missing kernel configuration file(s) (${KERNCONF})." @false +.endif +.if defined(KERNWARN) + @echo "--------------------------------------------------------------" + @echo ">>> WARNING: KERNEL= setting should be changed to KERNCONF=" + @echo "--------------------------------------------------------------" + @sleep 3 .endif @echo .for _kernel in ${BUILDKERNELS}