cvs commit: src/sys/conf kmod.mk

Aurelien Nephtali aurelien.nephtali at wanadoo.fr
Fri Oct 3 08:24:15 PDT 2003


It breaks the kernel compilation by triggering a "no kernel source tree found"
error.
I fixed like this:

-------------- From -----------
# Search for kernel source tree in standard places.
.for _dir in ${.CURDIR}/../.. ${.CURDIR}/../../.. /sys /usr/src/sys
.if !defined(SYSDIR) && exists(${_dir}/kern/)
SYSDIR= ${_dir}
.endif
.endfor
.if !defined(SYSDIR) || !exists(${SYSDIR}/kern/)
.error "can't find kernel source tree"
.endif
--------------------------------

-------------- To --------------
# Search for kernel source tree in standard places.
.for _dir in ${.CURDIR}/../.. ${.CURDIR}/../../.. /sys /usr/src/sys
.if !defined(SYSDIR) && exists(${_dir}/kern) **** <- Here ****
SYSDIR= ${_dir}
.endif
.endfor
.if !defined(SYSDIR) || !exists(${SYSDIR}/kern) **** <- There ****
.error "can't find kernel source tree"
.endif
--------------------------------

-- Aurelien

On Thu, Oct 02, 2003 at 02:34:07PM -0700, Ruslan Ermilov wrote:
> ru          2003/10/02 14:34:07 PDT
> 
>   FreeBSD src repository
> 
>   Modified files:
>     sys/conf             kmod.mk 
>   Log:
>   Revert rev. 1.86, I've fixed make(1) (make/dir.c,v 1.32).
>   
>   PR:             bin/34062
>   
>   Revision  Changes    Path
>   1.142     +1 -1      src/sys/conf/kmod.mk
> _______________________________________________
> cvs-all at freebsd.org mailing list
> http://lists.freebsd.org/mailman/listinfo/cvs-all
> To unsubscribe, send any mail to "cvs-all-unsubscribe at freebsd.org"
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 187 bytes
Desc: not available
Url : http://lists.freebsd.org/pipermail/cvs-src/attachments/20031003/7c08efb7/attachment.bin


More information about the cvs-src mailing list