Gentoo Archives: gentoo-commits

From: Pacho Ramos <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: profiles/base/
Date: Sun, 04 Nov 2018 13:55:25
Message-Id: 1541339661.c06caedd7c6bb91be0b8e963eb2cb98e74448f67.pacho@gentoo
1 commit: c06caedd7c6bb91be0b8e963eb2cb98e74448f67
2 Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
3 AuthorDate: Sun Nov 4 13:54:21 2018 +0000
4 Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
5 CommitDate: Sun Nov 4 13:54:21 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c06caedd
7
8 base/make.defaults: Add GOBIN to ENV_UNSET
9
10 Random values in GOBIN can affect the building of some packages:
11 https://archives.gentoo.org/gentoo-dev/message/163010f83ae7819d80c0cfdf797cbfe0
12
13 Signed-off-by: Pacho Ramos <pacho <AT> gentoo.org>
14
15 profiles/base/make.defaults | 6 +++++-
16 1 file changed, 5 insertions(+), 1 deletion(-)
17
18 diff --git a/profiles/base/make.defaults b/profiles/base/make.defaults
19 index 8e489bf49e1..167a51095d4 100644
20 --- a/profiles/base/make.defaults
21 +++ b/profiles/base/make.defaults
22 @@ -36,7 +36,11 @@ CONFIG_PROTECT_MASK="/etc/env.d /etc/gconf"
23 # PERL_MM_OPT PERL5LIB PERL5OPT PERL_MB_OPT PERL_CORE PERLPREFIX:
24 # These are guaranteed to confuse perl module installation. Pre-EAPI7
25 # the Perl eclasses bail out if they are set. Now we declare them here.
26 -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"
27 +#
28 +# GOBIN needs to be cleaned as random values in GOBIN can affect the
29 +# building of some packages:
30 +# https://archives.gentoo.org/gentoo-dev/message/163010f83ae7819d80c0cfdf797cbfe0
31 +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"
32
33 # Variables that are set exclusively by the profile
34 # and not by user configuration files.