1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-05 12:56:08 +00:00

Add ${.CURDIR}/../../../.. to the list of places we look for the

kernel.  The new moudles/sound/drivers/foo pushes us down one more
level.
This commit is contained in:
Warner Losh 2000-07-07 05:12:33 +00:00
parent 45b65a5e33
commit c7c5a4ed23
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=62748

View File

@ -1,7 +1,7 @@
# $FreeBSD$
# Search for kernel source tree in standard places.
.for _dir in ${.CURDIR}/../.. ${.CURDIR}/../../.. /sys /usr/src/sys
.for _dir in ${.CURDIR}/../.. ${.CURDIR}/../../.. ${.CURDIR}/../../../.. /sys /usr/src/sys
.if !defined(SYSDIR) && exists(${_dir}/kern/) && exists(${_dir}/conf/)
SYSDIR= ${_dir}
.endif