From owner-svn-src-head@freebsd.org Thu Jul 6 13:40:45 2017 Return-Path: Delivered-To: svn-src-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id BC87BDADF88; Thu, 6 Jul 2017 13:40:45 +0000 (UTC) (envelope-from mack@macktronics.com) Received: from borg.macktronics.com (gw.macktronics.com [209.181.253.70]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9A9C36FA60; Thu, 6 Jul 2017 13:40:44 +0000 (UTC) (envelope-from mack@macktronics.com) Received: from carob.macktronics.com (olive.macktronics.com [209.181.253.66]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by borg.macktronics.com (Postfix) with ESMTPS id F3506778; Thu, 6 Jul 2017 08:31:04 -0500 (CDT) Date: Thu, 6 Jul 2017 08:31:04 -0500 (CDT) From: Dan Mack X-X-Sender: mack@localhost.local To: John Baldwin cc: Ngie Cooper , src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: Re: svn commit: r320701 - in head: bin sbin usr.bin usr.sbin In-Reply-To: <4ac448c4-af76-de43-5dbc-370492962d59@FreeBSD.org> Message-ID: References: <201707060415.v664FU9n085204@repo.freebsd.org> <4ac448c4-af76-de43-5dbc-370492962d59@FreeBSD.org> User-Agent: Alpine 2.11 (GSO 23 2013-08-11) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.23 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: Thu, 06 Jul 2017 13:40:45 -0000 On Thu, 6 Jul 2017, John Baldwin wrote: > On 7/6/17 12:15 AM, Ngie Cooper wrote: >> Author: ngie >> Date: Thu Jul 6 04:15:30 2017 >> New Revision: 320701 >> URL: https://svnweb.freebsd.org/changeset/base/320701 >> >> Log: >> Remove SUBDIR ordering/uniquifying in *bin/Makefile >> >> After the addition of SUBDIR.yes, uniquifying/ordering the SUBDIRs doesn't >> make a whole lot of sense, and it's in effect a half measure. >> >> Ordering SUBDIR (after adding SUBDIR.yes to it) in bsd.subdir.mk is a >> separate change that warrants more discussion/testing, because while >> the SUBDIR_PARALLEL work largely fixed dependency ordering for SUBDIRs, >> there might be downstream FreeBSD consumers that rely on the SUBDIR >> ordering. > > FWIW, I (as a human) am used to sorted build output when watching the > output of 'buildworld' to gauge how far it has completed. This was a > feature that SVN broke (CVS would walk directories in sorted order so > you could do the same sort of guessing for 'cvs up' but you can't for > 'svn up'). It's not a hard dependency, per se, but it would be nice to > preserve this feature if possible. I had noticed that it had become > less correct "recently". > > -- > John Baldwin This is my poor man's build progress meter: set n=`awk 'END {print NR}' 320734/phase_bw` # << in prog build log set t=`awk 'END {print NR}' 320469/phase_bw` # last good build log echo "scale=4;$n/$t*100" | bc -l :-) Dan