diff options
author | pjd <pjd@FreeBSD.org> | 2004-06-21 08:41:50 +0000 |
---|---|---|
committer | pjd <pjd@FreeBSD.org> | 2004-06-21 08:41:50 +0000 |
commit | 7a9e41c1107e6d0b906e187052141df4727ec17b (patch) | |
tree | 7e7a0be83583b9c0ccd85ce6e6783317e2257743 | |
parent | 86ff38aa6a16b0d64c479830cee246b451837992 (diff) | |
download | FreeBSD-src-7a9e41c1107e6d0b906e187052141df4727ec17b.zip FreeBSD-src-7a9e41c1107e6d0b906e187052141df4727ec17b.tar.gz |
- 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
-rw-r--r-- | share/mk/bsd.kmod.mk | 8 |
1 files changed, 5 insertions, 3 deletions
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 |