From owner-svn-ports-head@freebsd.org Mon Sep 7 07:08:46 2015 Return-Path: Delivered-To: svn-ports-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 8E6469CCB47; Mon, 7 Sep 2015 07:08:46 +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 7A778138E; Mon, 7 Sep 2015 07:08:46 +0000 (UTC) (envelope-from danfe@freebsd.org) Received: by freefall.freebsd.org (Postfix, from userid 1033) id 7890F1C5D; Mon, 7 Sep 2015 07:08:46 +0000 (UTC) Date: Mon, 7 Sep 2015 07:08:46 +0000 From: Alexey Dokuchaev To: Mathieu Arnold Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r396248 - head/games/scummvm Message-ID: <20150907070846.GA23292@FreeBSD.org> References: <201509070625.t876PBJV079503@repo.freebsd.org> <663DB8E120502884DE748209@atuin.in.mat.cc> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <663DB8E120502884DE748209@atuin.in.mat.cc> User-Agent: Mutt/1.5.23 (2014-03-12) X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 07 Sep 2015 07:08:46 -0000 On Mon, Sep 07, 2015 at 08:46:51AM +0200, Mathieu Arnold wrote: > +--On 7 septembre 2015 06:25:11 +0000 Alexey Dokuchaev > wrote: > | New Revision: 396248 > | URL: https://svnweb.freebsd.org/changeset/ports/396248 > | > | Log: > | - Ensure that build logs in bulk (package) mode are useful by passing > | the --enable-verbose-build argument to configure script > > Why not always make the logs useful ? If I go and run make, I'll have some > output that's useless for me to debug, right ? Typically yes, I agree; I also prefer to always have full logs. However, a lot of people prefer to see them when needed, not always; this perception could be popularized by Linux kernel build being quite by default, OpeWRT, etc. Our own Uses/cmake.mk defines CMAKE_VERBOSE for patch/package builds only. On the other hand, with pkg(8) and binary packages becoming widely adopted, perhaps we can assume that building from the ports is expert mode and thus --enable-verbose-build/CMAKE_VERBOSE=yes/etc. should be rightful default. I was trying to preserve existing defaults, yet not pessimize cluster logs usefullness. I think if we could have consensus among ports folks that we always prefer verbose logs, I'm all for removing the checks and just always pass it. In fact, this will make quite a few ports less cluttered. ./danfe