From 7a9e41c1107e6d0b906e187052141df4727ec17b Mon Sep 17 00:00:00 2001 From: pjd Date: Mon, 21 Jun 2004 08:41:50 +0000 Subject: - Missing trailing slash for a kern directory check. - Check in both places if ${_dir}/conf/kmod.mk exists. - Style fixes (lines too long). Submitted by: bde --- share/mk/bsd.kmod.mk | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'share') diff --git a/share/mk/bsd.kmod.mk b/share/mk/bsd.kmod.mk index 7ccf131..4d1751e 100644 --- a/share/mk/bsd.kmod.mk +++ b/share/mk/bsd.kmod.mk @@ -1,12 +1,14 @@ # $FreeBSD$ # Search for kernel source tree in standard places. -.for _dir in ${.CURDIR}/../.. ${.CURDIR}/../../.. ${.CURDIR}/../../../.. /sys /usr/src/sys -.if !defined(SYSDIR) && exists(${_dir}/kern) && exists(${_dir}/conf/kmod.mk) +.for _dir in ${.CURDIR}/../.. ${.CURDIR}/../../.. ${.CURDIR}/../../../.. \ + /sys /usr/src/sys +.if !defined(SYSDIR) && exists(${_dir}/kern/) && exists(${_dir}/conf/kmod.mk) SYSDIR= ${_dir} .endif .endfor -.if !defined(SYSDIR) || !exists(${SYSDIR}/kern) || !exists(${SYSDIR}/conf/) +.if !defined(SYSDIR) || !exists(${SYSDIR}/kern/) || \ + !exists(${SYSDIR}/conf/kmod.mk) .error "can't find kernel source tree" .endif -- cgit v1.1