Make the check for a precompiled kernel correct.

This commit is contained in:
Jordan K. Hubbard 1995-01-28 05:33:52 +00:00
parent f40f848a55
commit 1569d8d643
1 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
# $Id: Makefile,v 1.90 1995/01/27 08:30:35 jkh Exp $
# $Id: Makefile,v 1.91 1995/01/28 01:18:36 jkh Exp $
#
FLOPPY= fd0
@ -54,7 +54,7 @@ hierarchy:
ln -s usr/src/sys ${DESTDIR}/sys
kernel: ${.CURDIR}/../sys/i386/conf/GENERIC
if [ ! -f ${.CURDIR}/../sys/compile/GENERIC ]; then \
if [ ! -d ${.CURDIR}/../sys/compile/GENERIC ]; then \
(cd ${.CURDIR}/../sys/i386/conf; config GENERIC); \
(cd ${.CURDIR}/../sys/compile/GENERIC; \
${MAKE} depend; ${MAKE} all; ) \