From owner-svn-src-all@FreeBSD.ORG Wed Sep 17 19:51:46 2014 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1C3CD17B; Wed, 17 Sep 2014 19:51:46 +0000 (UTC) Received: from mail-qc0-x236.google.com (mail-qc0-x236.google.com [IPv6:2607:f8b0:400d:c01::236]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 75F89EBF; Wed, 17 Sep 2014 19:51:45 +0000 (UTC) Received: by mail-qc0-f182.google.com with SMTP id c9so2879619qcz.41 for ; Wed, 17 Sep 2014 12:51:44 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:date:from:to:cc:subject:message-id:references:mime-version :content-type:content-disposition:in-reply-to:user-agent; bh=dEOECQRSbVqv0nwA3jz28+70KDSvj7x0vgThsJH6WMg=; b=m3RljnrRoqun6I1TuPwR1mhIxyR2EDgISt4hRr2d50qQOQc0Lf3xiO24b02p28xkf0 /JgP1jTtMYU4Nm3SrLZi2Us3mA/gGls+6KQw3RlSdqWohFfcRswssTyfXLVASTkP/JJP vYhyylXRP6qpzhFT+tDy8MEk9jbXrnRe81k+tgeayQmu+Y4dCHGdcPHidke4CTMtA96L YZSJzz5PBJS/TZpogTE2jv8SCMtvn/PL2Mg+gpxTIonFrKJO/tMzuqQ+g31iDGINsZ+r CFwdgkjA7CdsxNxNyBURvfIjn7Yi0GU+XpiR+xxG/z82gwcx3+qFMKcoeHbLzPx97GQM G/+g== X-Received: by 10.224.129.66 with SMTP id n2mr41193224qas.34.1410983504524; Wed, 17 Sep 2014 12:51:44 -0700 (PDT) Received: from ip-172-31-25-62.ec2.internal (ec2-54-85-57-1.compute-1.amazonaws.com. [54.85.57.1]) by mx.google.com with ESMTPSA id a64sm14888881qge.22.2014.09.17.12.51.43 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Wed, 17 Sep 2014 12:51:43 -0700 (PDT) Sender: Mark Johnston Date: Wed, 17 Sep 2014 19:56:23 +0000 From: Mark Johnston To: John Baldwin Subject: Re: svn commit: r265703 - in head: share/man/man4 sys/dev/bce sys/dev/bxe sys/modules/bce Message-ID: <20140917195623.GC69638@ip-172-31-25-62.ec2.internal> References: <201405081940.s48Jebh5041824@svn.freebsd.org> <54167255.5090806@FreeBSD.org> <49F5640B08EAA94DAF2F6B6145E6A08A012866587B@AVMB1.qlogic.org> <1807177.fGkyECExdY@ralph.baldwin.cx> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1807177.fGkyECExdY@ralph.baldwin.cx> User-Agent: Mutt/1.5.23 (2014-03-12) Cc: "src-committers@freebsd.org" , "svn-src-all@freebsd.org" , David Somayajulu , "Andrey V. Elsukov" , David C Somayajulu , "svn-src-head@freebsd.org" X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 17 Sep 2014 19:51:46 -0000 On Wed, Sep 17, 2014 at 11:02:00AM -0400, John Baldwin wrote: > 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. That seems to have changed with r269039. > There is a 'make cleandepend' that will clean up such files, but I tend to use > 'make cleandir' which does both.