From owner-svn-src-all@freebsd.org Sat Oct 31 04:58:39 2015 Return-Path: Delivered-To: svn-src-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 A5D36A22832; Sat, 31 Oct 2015 04:58:39 +0000 (UTC) (envelope-from yaneurabeya@gmail.com) Received: from mail-pa0-x22a.google.com (mail-pa0-x22a.google.com [IPv6:2607:f8b0:400e:c03::22a]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 6F42D193F; Sat, 31 Oct 2015 04:58:39 +0000 (UTC) (envelope-from yaneurabeya@gmail.com) Received: by pacfv9 with SMTP id fv9so96378932pac.3; Fri, 30 Oct 2015 21:58:39 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=content-type:mime-version:subject:from:in-reply-to:date:cc :content-transfer-encoding:message-id:references:to; bh=6xn0zGNP8OE98n1TyLGUtopmWZ4yZcbkZL5NhOCnYrQ=; b=lkq0qhya2EYpDynye+vLIRbr9fWaHfelR1bA1/YxSD4vm/y1bOnEZ5nq+RdPWOO5eq nOkPFSPzsDVa7etNPPebfXVGqnJubFeO9bpgRuNHbSS5sqqvUa50dTFkwkwbBCCDF6vT SELiNtz8rXQI8l+wIOEVZQMOWBXOZh0rgzonA8HqHo1/7igaoaw4udd/qLlDmsCEIkAM ZizUlt2iUoxajNVszBHtv67Ut37qSBPZT+cQSgqEI4BOAfi7dem3/6fltKM67vY80Uvl GNi+GSv2dc7ql1s0oZWbkChqlgVSewd9YfS5hAM7eibK8zi4XAUp8J5uJm76DRRh372D xmUg== X-Received: by 10.68.131.202 with SMTP id oo10mr12865508pbb.40.1446267518939; Fri, 30 Oct 2015 21:58:38 -0700 (PDT) Received: from [192.168.20.7] (c-24-16-212-205.hsd1.wa.comcast.net. [24.16.212.205]) by smtp.gmail.com with ESMTPSA id n1sm11275427pap.7.2015.10.30.21.58.38 (version=TLSv1/SSLv3 cipher=OTHER); Fri, 30 Oct 2015 21:58:38 -0700 (PDT) Content-Type: text/plain; charset=windows-1252 Mime-Version: 1.0 (Mac OS X Mail 8.2 \(2104\)) Subject: Re: svn commit: r290220 - head/share/mk From: NGie Cooper In-Reply-To: <563435E1.9020108@FreeBSD.org> Date: Fri, 30 Oct 2015 21:58:37 -0700 Cc: "src-committers@freebsd.org" , "svn-src-all@freebsd.org" , "svn-src-head@freebsd.org" Content-Transfer-Encoding: quoted-printable Message-Id: <372E031B-090F-44FD-AD18-DF84767C1A77@gmail.com> References: <201510310207.t9V27U7U051752@repo.freebsd.org> <563435E1.9020108@FreeBSD.org> To: Bryan Drewery X-Mailer: Apple Mail (2.2104) X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.20 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: Sat, 31 Oct 2015 04:58:39 -0000 > On Oct 30, 2015, at 20:30, Bryan Drewery wrote: >=20 >> On Oct 30, 2015, at 19:18, NGie Cooper wrote: >>=20 >>> On Fri, Oct 30, 2015 at 7:07 PM, Bryan Drewery = wrote: >>> Author: bdrewery >>> Date: Sat Oct 31 02:07:30 2015 >>> New Revision: 290220 >>> URL: https://svnweb.freebsd.org/changeset/base/290220 >>>=20 >>> Log: >>> Don't hide stderr when checking ${CC} --version. >>>=20 >>> This can have important debugging information such as 'cc: not = found' or >>> 'ccache: error: Could not find compiler "cc" in PATH'. >>=20 >> Won't this spam installworld/distribution a lot? >=20 > Not for me. >=20 > What do you expect from stderr that is non-fatal? The only cases I've > had so far resulted in the .error triggering later due to not being = able > to determine compiler type. >=20 > Also, install depending on the compiler type is wrong. We need to > eliminate the cases where it determines SUBDIR or FILES to fix this. = I'd > like to effectively set CC=3Dfalse during install but can't while = those > checks exist. I=92ll have to run the build again. I=92ve seen a lot of noise without = it redirected to /dev/null in the past, but it=92s likely ok. I=92d like CC=3Dfalse to work too with installworld/distribution. I = think it=92s really bad that it=92s not the default variable right now = because it could cause things to get recompiled at install, which = inevitably leads to confusing emails later from end-users.=