From 18ebc2eaa199a7c989bd92e301082808b8ef2d29 Mon Sep 17 00:00:00 2001 From: "Justin T. Gibbs" Date: Mon, 18 Sep 2000 03:35:49 +0000 Subject: [PATCH] This is really gross. If a user decides to forego a make depend during "make buildkernel", they should get what they deserve if no previous make depend has been run for that kernel. Instead, the build process includes special instructions to unconditionally rebuild aicasm. When aicasm moved to its own directory, this hack broke. Correct the hack until a get buy off on killing it. --- Makefile.inc1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile.inc1 b/Makefile.inc1 index b60b749a075f..6a2d28d74856 100644 --- a/Makefile.inc1 +++ b/Makefile.inc1 @@ -393,8 +393,8 @@ buildkernel: config ${CONFIGARGS} -d ${KRNLOBJDIR}/${_kernel} ${_kernel} .endif cd ${KRNLOBJDIR}/${_kernel}; \ - MAKESRCPATH=${KRNLSRCDIR}/dev/aic7xxx \ - ${MAKE} -f ${KRNLSRCDIR}/dev/aic7xxx/Makefile + MAKESRCPATH=${KRNLSRCDIR}/dev/aic7xxx/aicasm \ + ${MAKE} -f ${KRNLSRCDIR}/dev/aic7xxx/aicasm/Makefile .if !defined(NO_KERNELDEPEND) cd ${KRNLOBJDIR}/${_kernel}; \ ${WMAKEENV} MACHINE=${MACHINE} ${MAKE} KERNEL=${INSTKERNNAME} depend