From owner-cvs-all@FreeBSD.ORG Fri Oct 3 08:24:14 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E47E616A4BF; Fri, 3 Oct 2003 08:24:14 -0700 (PDT) Received: from mwinf0101.wanadoo.fr (smtp8.wanadoo.fr [193.252.22.30]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0BD3644001; Fri, 3 Oct 2003 08:24:12 -0700 (PDT) (envelope-from dak@wanadoo.fr) Received: from smtp.wanadoo.fr (ca-sqy-14-120.w80-8.abo.wanadoo.fr [80.8.67.120]) by mwinf0101.wanadoo.fr (SMTP Server) with ESMTP id 83181C000252; Fri, 3 Oct 2003 17:24:09 +0200 (CEST) Received: from nebula.wanadoo.fr (localhost [127.0.0.1]) by smtp.wanadoo.fr (8.12.10/8.12.10) with ESMTP id h93FNKsc001177; Fri, 3 Oct 2003 17:23:21 +0200 (CEST) (envelope-from dak@nebula.wanadoo.fr) Received: (from dak@localhost) by nebula.wanadoo.fr (8.12.10/8.12.10/Submit) id h93FNKCE001176; Fri, 3 Oct 2003 17:23:20 +0200 (CEST) (envelope-from dak) Date: Fri, 3 Oct 2003 17:23:20 +0200 From: Aurelien Nephtali To: Ruslan Ermilov Message-ID: <20031003152320.GA90990@nebula.wanadoo.fr> References: <200310022134.h92LY7Jb071040@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="dDRMvlgZJXvWKvBx" Content-Disposition: inline In-Reply-To: <200310022134.h92LY7Jb071040@repoman.freebsd.org> User-Agent: Mutt/1.5.4i cc: cvs-src@freebsd.org cc: src-committers@freebsd.org cc: cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/conf kmod.mk X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Oct 2003 15:24:15 -0000 --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--