summaryrefslogtreecommitdiffstats
path: root/sys/conf/kmod.mk
diff options
context:
space:
mode:
authorimp <imp@FreeBSD.org>2003-10-03 22:00:06 +0000
committerimp <imp@FreeBSD.org>2003-10-03 22:00:06 +0000
commit293cc5856c892f796ced6edfc9d703bd6a54d98a (patch)
treed01d620f52643ab2eb7878a05a4dc513e6da99e2 /sys/conf/kmod.mk
parent150fde5f5c677558f66ef4c1c5e751b5d94d4eff (diff)
downloadFreeBSD-src-293cc5856c892f796ced6edfc9d703bd6a54d98a.zip
FreeBSD-src-293cc5856c892f796ced6edfc9d703bd6a54d98a.tar.gz
While make has been fixed to grok this construct, the new make hasn't
been widely deploy and that's causing us a lot of pain. Back out the last commit for a few weeks so that we can lessen the support load in current@ asking why they can't build kernels anymore. Instructions in UPDATING have been updated, but this should be more effective. Revert the reverting: November 1st, 2003
Diffstat (limited to 'sys/conf/kmod.mk')
-rw-r--r--sys/conf/kmod.mk4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/conf/kmod.mk b/sys/conf/kmod.mk
index 20d079b..5d10da5 100644
--- a/sys/conf/kmod.mk
+++ b/sys/conf/kmod.mk
@@ -165,11 +165,11 @@ ${OBJS}: ${_link}
# Search for kernel source tree in standard places.
.for _dir in ${.CURDIR}/../.. ${.CURDIR}/../../.. /sys /usr/src/sys
-.if !defined(SYSDIR) && exists(${_dir}/kern/)
+.if !defined(SYSDIR) && exists(${_dir}/kern)
SYSDIR= ${_dir}
.endif
.endfor
-.if !defined(SYSDIR) || !exists(${SYSDIR}/kern/)
+.if !defined(SYSDIR) || !exists(${SYSDIR}/kern)
.error "can't find kernel source tree"
.endif
OpenPOWER on IntegriCloud