From ef022ceaf3a112f56d17a1eb3114a368e4b6b5fa Mon Sep 17 00:00:00 2001 From: zrj Date: Mon, 28 May 2018 08:41:08 +0300 Subject: [PATCH] Fix missing make depend for quickkernel. Only realquickkernel should skip it. --- Makefile.inc1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile.inc1 b/Makefile.inc1 index 3da460752f..049f9d9408 100644 --- a/Makefile.inc1 +++ b/Makefile.inc1 @@ -761,7 +761,7 @@ quickkernel realquickkernel: maybe_bk_tools bk_build_list bk_kernwarn config ${CONFIGARGS} -d ${KRNLOBJDIR}/${_kernel} \ ${KERNCONFDIR}/${_kernel} .endif -.if !defined(NO_KERNELDEPEND) && !target(realquickkernel) +.if !defined(NO_KERNELDEPEND) && !make(realquickkernel) cd ${KRNLOBJDIR}/${_kernel}; \ ${KMAKEENV} make KERNEL=${INSTKERNNAME} depend .endif @@ -773,7 +773,7 @@ quickkernel realquickkernel: maybe_bk_tools bk_build_list bk_kernwarn config ${CONFIGARGS} -d ${KRNLOBJDIR}/${_kernel} \ ${KERNCONFDIR}/${_kernel} .endif -.if !defined(NO_KERNELDEPEND) && !target(realquickkernel) +.if !defined(NO_KERNELDEPEND) && !make(realquickkernel) cd ${KRNLOBJDIR}/${_kernel}; \ make KERNEL=${INSTKERNNAME} depend .endif -- 2.11.4.GIT