diff options
author | 2019-09-05 20:01:04 +0100 | |
---|---|---|
committer | 2019-09-05 20:05:56 +0100 | |
commit | 534e0f7d5e8a02264b7b7fc97c3ef11441e35c5c (patch) | |
tree | 93df62236760f00e4ca7780e1765bdf7fbdc0056 /eclass/toolchain.eclass | |
parent | dev-libs/libluv: new package (1.30.1_p0) (diff) | |
download | gentoo-534e0f7d5e8a02264b7b7fc97c3ef11441e35c5c.tar.gz gentoo-534e0f7d5e8a02264b7b7fc97c3ef11441e35c5c.tar.bz2 gentoo-534e0f7d5e8a02264b7b7fc97c3ef11441e35c5c.zip |
toolchain.eclass: drop PATH and ROOTPATH from /etc/env.d/gcc/
toolchain.eclass constructs correct GCC_PATH since 2007:
commit 7d9f89700a2ee50674c0d871ec6d21b468ac6206
("start moving to GCC_PATH for env.d #174422 and cleanup "
"gcc-config logic so that it doesnt matter what the ROOT value is")
gcc-config moved over as well. Let's leave GCC_PATH as
the only available variable to locate gcc's whereabouts.
Bug: https://bugs.gentoo.org/174422
Signed-off-by: Sergei Trofimovich <slyfox@gentoo.org>
Diffstat (limited to 'eclass/toolchain.eclass')
-rw-r--r-- | eclass/toolchain.eclass | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/eclass/toolchain.eclass b/eclass/toolchain.eclass index 529c12a4116a..bc7d7b1c2609 100644 --- a/eclass/toolchain.eclass +++ b/eclass/toolchain.eclass @@ -2126,8 +2126,6 @@ create_gcc_env_entry() { fi cat <<-EOF > ${gcc_envd_file} - PATH="${BINPATH}" - ROOTPATH="${BINPATH}" GCC_PATH="${BINPATH}" LDPATH="${ldpaths}" MANPATH="${DATAPATH}/man" |