From owner-svn-src-head@FreeBSD.ORG Wed Sep 17 18:14:31 2014 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id DBF80523; Wed, 17 Sep 2014 18:14:31 +0000 (UTC) Received: from bigwig.baldwin.cx (bigwig.baldwin.cx [IPv6:2001:470:1f11:75::1]) (using TLSv1 with cipher DHE-RSA-CAMELLIA256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id AE978287; Wed, 17 Sep 2014 18:14:31 +0000 (UTC) Received: from ralph.baldwin.cx (pool-173-70-85-31.nwrknj.fios.verizon.net [173.70.85.31]) by bigwig.baldwin.cx (Postfix) with ESMTPSA id B7DFFB941; Wed, 17 Sep 2014 14:14:30 -0400 (EDT) From: John Baldwin To: David Somayajulu Subject: Re: svn commit: r265703 - in head: share/man/man4 sys/dev/bce sys/dev/bxe sys/modules/bce Date: Wed, 17 Sep 2014 11:02 -0400 Message-ID: <1807177.fGkyECExdY@ralph.baldwin.cx> User-Agent: KMail/4.10.5 (FreeBSD/10.0-STABLE; KDE/4.10.5; amd64; ; ) In-Reply-To: <49F5640B08EAA94DAF2F6B6145E6A08A012866587B@AVMB1.qlogic.org> References: <201405081940.s48Jebh5041824@svn.freebsd.org> <54167255.5090806@FreeBSD.org> <49F5640B08EAA94DAF2F6B6145E6A08A012866587B@AVMB1.qlogic.org> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" X-Greylist: Sender succeeded SMTP AUTH, not delayed by milter-greylist-4.2.7 (bigwig.baldwin.cx); Wed, 17 Sep 2014 14:14:30 -0400 (EDT) Cc: "svn-src-head@freebsd.org" , "Andrey V. Elsukov" , "svn-src-all@freebsd.org" , "src-committers@freebsd.org" , David C Somayajulu X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 17 Sep 2014 18:14:32 -0000 On Monday, September 15, 2014 04:31:13 PM David Somayajulu wrote: > Hi Andrey, > When I didn't have the clean override, "make clean" was not cleaning > properly when I built a standalone loadable driver. Perhaps we can change > "clean" in bxe/Makefile and bce/Makefile to "dclean". Try using 'make cleandir' instead of 'make clean'. 'make clean' does not clean files created by 'make depend' such as the 'machine' and 'x86' symlinks. There is a 'make cleandepend' that will clean up such files, but I tend to use 'make cleandir' which does both. -- John Baldwin