From owner-svn-ports-all@freebsd.org Tue Sep 8 06:36:45 2015 Return-Path: Delivered-To: svn-ports-all@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 296089CD6AC; Tue, 8 Sep 2015 06:36:45 +0000 (UTC) (envelope-from danfe@freebsd.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id 1C2391ADF; Tue, 8 Sep 2015 06:36:45 +0000 (UTC) (envelope-from danfe@freebsd.org) Received: by freefall.freebsd.org (Postfix, from userid 1033) id 1A81F1FD4; Tue, 8 Sep 2015 06:36:45 +0000 (UTC) Date: Tue, 8 Sep 2015 06:36:45 +0000 From: Alexey Dokuchaev To: Kubilay Kocak Cc: Mathieu Arnold , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r396248 - head/games/scummvm Message-ID: <20150908063644.GA58868@FreeBSD.org> References: <201509070625.t876PBJV079503@repo.freebsd.org> <663DB8E120502884DE748209@atuin.in.mat.cc> <20150907070846.GA23292@FreeBSD.org> <55EE412F.4080802@FreeBSD.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <55EE412F.4080802@FreeBSD.org> User-Agent: Mutt/1.5.23 (2014-03-12) X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 08 Sep 2015 06:36:45 -0000 On Tue, Sep 08, 2015 at 12:00:15PM +1000, Kubilay Kocak wrote: > I advocate verbose by default across the board in the ports I maintain > already. Our defaults should be conducive to debug-ability, particularly > for the case of users providing feedback for maintainers. > > How about we exp-run for GNU_CONFIGURE=yes ports: > > CONFIGURE_ARGS+= --disable-silent-rules > MAKE_ENV+= V=1 (maybe even MAKE_ARGS) One problem here is that lots of ports have configure scripts generated before silent rules idea existed (and thus have no --disable-silent-rules switch). However, I agree that such an exp-run is useful: we can see the old/new configure scripts distribution. After all, we can always grep ${CONFIGURE_SCRIPT} for see if they support some kind of build verbosity support and amend CONFIGURE_ARGS accordingly. ./danfe