Date: Fri, 3 Oct 2003 17:23:20 +0200 From: Aurelien Nephtali <aurelien.nephtali@wanadoo.fr> To: Ruslan Ermilov <ru@freebsd.org> Cc: cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/conf kmod.mk Message-ID: <20031003152320.GA90990@nebula.wanadoo.fr> In-Reply-To: <200310022134.h92LY7Jb071040@repoman.freebsd.org> References: <200310022134.h92LY7Jb071040@repoman.freebsd.org>
next in thread | previous in thread | raw e-mail | index | archive | help
--dDRMvlgZJXvWKvBx
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
Content-Transfer-Encoding: quoted-printable
It breaks the kernel compilation by triggering a "no kernel source tree fou=
nd"
error.
I fixed like this:
-------------- From -----------
# Search for kernel source tree in standard places.
=2Efor _dir in ${.CURDIR}/../.. ${.CURDIR}/../../.. /sys /usr/src/sys
=2Eif !defined(SYSDIR) && exists(${_dir}/kern/)
SYSDIR=3D ${_dir}
=2Eendif
=2Eendfor
=2Eif !defined(SYSDIR) || !exists(${SYSDIR}/kern/)
=2Eerror "can't find kernel source tree"
=2Eendif
--------------------------------
-------------- To --------------
# Search for kernel source tree in standard places.
=2Efor _dir in ${.CURDIR}/../.. ${.CURDIR}/../../.. /sys /usr/src/sys
=2Eif !defined(SYSDIR) && exists(${_dir}/kern) **** <- Here ****
SYSDIR=3D ${_dir}
=2Eendif
=2Eendfor
=2Eif !defined(SYSDIR) || !exists(${SYSDIR}/kern) **** <- There ****
=2Eerror "can't find kernel source tree"
=2Eendif
--------------------------------
-- Aurelien
On Thu, Oct 02, 2003 at 02:34:07PM -0700, Ruslan Ermilov wrote:
> ru 2003/10/02 14:34:07 PDT
>=20
> FreeBSD src repository
>=20
> Modified files:
> sys/conf kmod.mk=20
> Log:
> Revert rev. 1.86, I've fixed make(1) (make/dir.c,v 1.32).
> =20
> PR: bin/34062
> =20
> Revision Changes Path
> 1.142 +1 -1 src/sys/conf/kmod.mk
> _______________________________________________
> cvs-all@freebsd.org mailing list
> http://lists.freebsd.org/mailman/listinfo/cvs-all
> To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org"
--dDRMvlgZJXvWKvBx
Content-Type: application/pgp-signature
Content-Disposition: inline
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.2.3 (FreeBSD)
iD8DBQE/fZRoDNsbHbt8ok8RAkfXAJ0W441UGkFZNHsgCjNC50SWFalY7ACfYjsL
1LhNT+B65QAfW5WyHCRDgGs=
=zYaj
-----END PGP SIGNATURE-----
--dDRMvlgZJXvWKvBx--
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20031003152320.GA90990>
