From owner-freebsd-current@FreeBSD.ORG Mon Apr 4 05:04:48 2005 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1B82C16A4CE for ; Mon, 4 Apr 2005 05:04:48 +0000 (GMT) Received: from harmony.village.org (rover.village.org [168.103.84.182]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9C50443D49 for ; Mon, 4 Apr 2005 05:04:47 +0000 (GMT) (envelope-from imp@bsdimp.com) Received: from localhost (warner@rover2.village.org [10.0.0.1]) by harmony.village.org (8.13.3/8.13.1) with ESMTP id j3452ZrT090689; Sun, 3 Apr 2005 23:02:35 -0600 (MDT) (envelope-from imp@bsdimp.com) Date: Sun, 03 Apr 2005 23:02:52 -0600 (MDT) Message-Id: <20050403.230252.118920528.imp@bsdimp.com> To: nate@root.org From: "M. Warner Losh" In-Reply-To: <4250C96F.3040109@root.org> References: <4250C6EC.80004@root.org> <20050403.225503.70462416.imp@bsdimp.com> <4250C96F.3040109@root.org> X-Mailer: Mew version 3.3 on Emacs 21.3 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit cc: current@FreeBSD.ORG Subject: Re: cvs commit: src/sys/dev/acpica acpi_perf.c X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Apr 2005 05:04:48 -0000 In message: <4250C96F.3040109@root.org> Nate Lawson writes: : Any idea why I get this while trying to do a kernel compile? I'm going : to blow away the kernel compile directory now and see if that helps. : : ===> wlan_xauth (obj) : ===> xe (obj) : ===> xl (obj) : cd ../../../modules; : MAKEOBJDIRPREFIX=/home/src/sys/i386/compile/MRSPECIAL/modul : es KMODDIR=/boot/kernel DEBUG_FLAGS="-g" MACHINE=i386 : KERNBUILDDIR="/home/src/sy : s/i386/compile/MRSPECIAL" make all : ===> 3dfx (all) : make: don't know how to make machine/bus_at386.h. Stop : *** Error code 2 : : Stop in /home/src/sys/modules. : *** Error code 1 : : Stop in /home/src/sys/i386/compile/MRSPECIAL. "make cleandepend" will fix this. Anytime that files are deleted, make depend doesn't alway work with exactly this failure mode. Most of the time make depend will catch these things, but I've had some cases fail that I've not been able to pin down exactly. Warner