From owner-cvs-src@FreeBSD.ORG Fri May 4 14:56:31 2007 Return-Path: X-Original-To: cvs-src@freebsd.org Delivered-To: cvs-src@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id AA98B16A401; Fri, 4 May 2007 14:56:31 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from server.baldwin.cx (66-23-211-162.clients.speedfactory.net [66.23.211.162]) by mx1.freebsd.org (Postfix) with ESMTP id 521D913C448; Fri, 4 May 2007 14:56:31 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from localhost.corp.yahoo.com (john@localhost [127.0.0.1]) (authenticated bits=0) by server.baldwin.cx (8.13.8/8.13.8) with ESMTP id l44EuIi6048792; Fri, 4 May 2007 10:56:19 -0400 (EDT) (envelope-from jhb@freebsd.org) From: John Baldwin To: "Jack Vogel" Date: Fri, 4 May 2007 10:56:05 -0400 User-Agent: KMail/1.9.6 References: <200705040558.l445wlbs072537@repoman.freebsd.org> <2a41acea0705040012h6670a432ke31a2043c38cb18b@mail.gmail.com> In-Reply-To: <2a41acea0705040012h6670a432ke31a2043c38cb18b@mail.gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline Message-Id: <200705041056.07390.jhb@freebsd.org> X-Greylist: Sender succeeded SMTP AUTH authentication, not delayed by milter-greylist-2.0.2 (server.baldwin.cx [127.0.0.1]); Fri, 04 May 2007 10:56:19 -0400 (EDT) X-Virus-Scanned: ClamAV 0.88.3/3205/Fri May 4 06:50:21 2007 on server.baldwin.cx X-Virus-Status: Clean X-Spam-Status: No, score=-4.4 required=4.2 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.1.3 X-Spam-Checker-Version: SpamAssassin 3.1.3 (2006-06-01) on server.baldwin.cx Cc: Jack F Vogel , cvs-src@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/conf files X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 May 2007 14:56:31 -0000 On Friday 04 May 2007 03:12:00 am Jack Vogel wrote: > There is still a problem with my checkin, the sys/modules/em/Makefile > has a CFLAGS with an absolute path which i realize is not going to work. > I will try to figure out the right way to fix this tomorrow. >=20 > I think at one point I tried the form I see in kern.pre.mk, it uses > -I$S/dev/em, and it did not seem to work in this Makefile. Anyone > have a suggestion of the right way to fix this? =46rom acpi/acpi/Makefile: CFLAGS+=3D -I${.CURDIR}/../../../contrib/dev/acpica You would probably do: CFLAGS+=3D -I${.CURDIR}/../../dev/em >=20 > Sorry bout the disruption, >=20 > Jack >=20 >=20 > On 5/3/07, Jack F Vogel wrote: > > jfv 2007-05-04 05:58:47 UTC > > > > FreeBSD src repository > > > > Modified files: > > sys/conf files > > Log: > > Last minute mistake crept in, old file name. > > > > Approved by:pdeuskar > > > > Revision Changes Path > > 1.1200 +1 -1 src/sys/conf/files > > >=20 =2D-=20 John Baldwin