From 68924308074fd0d005fc0f0feae9fb84066280c9 Mon Sep 17 00:00:00 2001 From: Sheldon Hearn Date: Thu, 27 Apr 2000 09:20:18 +0000 Subject: [PATCH] Create ${KRNLOBJDIR} before running config(8), since config(8) does not create required parent directories of the kernel compile directory specified with its -d option. --- Makefile.inc1 | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile.inc1 b/Makefile.inc1 index da779955ac7a..c41dbe5b6fa1 100644 --- a/Makefile.inc1 +++ b/Makefile.inc1 @@ -378,6 +378,7 @@ buildkernel: @echo "--------------------------------------------------------------" .for _kernel in ${BUILDKERNELS} @echo "===> ${_kernel}" + mkdir -p ${KRNLOBJDIR} cd ${KRNLCONFDIR}; \ PATH=${TMPPATH} \ config ${CONFIGARGS} -d ${KRNLOBJDIR}/${_kernel} ${_kernel}