From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 71824138334 for ; Sun, 4 Nov 2018 13:55:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9E617E0BA6; Sun, 4 Nov 2018 13:55:23 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 6BCC2E0BA6 for ; Sun, 4 Nov 2018 13:55:23 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id F2EA6335C7D for ; Sun, 4 Nov 2018 13:55:21 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DFCCD42F for ; Sun, 4 Nov 2018 13:55:19 +0000 (UTC) From: "Pacho Ramos" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Pacho Ramos" Message-ID: <1541339661.c06caedd7c6bb91be0b8e963eb2cb98e74448f67.pacho@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: profiles/base/ X-VCS-Repository: repo/gentoo X-VCS-Files: profiles/base/make.defaults X-VCS-Directories: profiles/base/ X-VCS-Committer: pacho X-VCS-Committer-Name: Pacho Ramos X-VCS-Revision: c06caedd7c6bb91be0b8e963eb2cb98e74448f67 X-VCS-Branch: master Date: Sun, 4 Nov 2018 13:55:19 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: df799a0e-8f8f-415b-8715-58067235a5d9 X-Archives-Hash: 9bc1ec43e1fe463813236331d07291e2 commit: c06caedd7c6bb91be0b8e963eb2cb98e74448f67 Author: Pacho Ramos gentoo org> AuthorDate: Sun Nov 4 13:54:21 2018 +0000 Commit: Pacho Ramos gentoo org> CommitDate: Sun Nov 4 13:54:21 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c06caedd base/make.defaults: Add GOBIN to ENV_UNSET Random values in GOBIN can affect the building of some packages: https://archives.gentoo.org/gentoo-dev/message/163010f83ae7819d80c0cfdf797cbfe0 Signed-off-by: Pacho Ramos gentoo.org> profiles/base/make.defaults | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/profiles/base/make.defaults b/profiles/base/make.defaults index 8e489bf49e1..167a51095d4 100644 --- a/profiles/base/make.defaults +++ b/profiles/base/make.defaults @@ -36,7 +36,11 @@ CONFIG_PROTECT_MASK="/etc/env.d /etc/gconf" # PERL_MM_OPT PERL5LIB PERL5OPT PERL_MB_OPT PERL_CORE PERLPREFIX: # These are guaranteed to confuse perl module installation. Pre-EAPI7 # the Perl eclasses bail out if they are set. Now we declare them here. -ENV_UNSET="DBUS_SESSION_BUS_ADDRESS DISPLAY XAUTHORITY XDG_CACHE_HOME XDG_CONFIG_HOME XDG_DATA_HOME XDG_RUNTIME_DIR PERL_MM_OPT PERL5LIB PERL5OPT PERL_MB_OPT PERL_CORE PERLPREFIX" +# +# GOBIN needs to be cleaned as random values in GOBIN can affect the +# building of some packages: +# https://archives.gentoo.org/gentoo-dev/message/163010f83ae7819d80c0cfdf797cbfe0 +ENV_UNSET="DBUS_SESSION_BUS_ADDRESS DISPLAY XAUTHORITY XDG_CACHE_HOME XDG_CONFIG_HOME XDG_DATA_HOME XDG_RUNTIME_DIR PERL_MM_OPT PERL5LIB PERL5OPT PERL_MB_OPT PERL_CORE PERLPREFIX GOBIN" # Variables that are set exclusively by the profile # and not by user configuration files.