diff options
author | Mike Frysinger <vapier@gentoo.org> | 2016-03-12 10:53:42 -0500 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2016-03-15 13:56:38 -0400 |
commit | 6fd83c0c338e901db4ba47ddb87f523482fedf33 (patch) | |
tree | ce44e669bac2ea58fcafb9ba94e423a4b540aa4e /eclass/toolchain.eclass | |
parent | dev-perl/Canary-Stability: x86 stable wrt bug #576110 (diff) | |
download | gentoo-6fd83c0c338e901db4ba47ddb87f523482fedf33.tar.gz gentoo-6fd83c0c338e901db4ba47ddb87f523482fedf33.tar.bz2 gentoo-6fd83c0c338e901db4ba47ddb87f523482fedf33.zip |
toolchain.eclass: use versioned SLOT all the time
Diffstat (limited to 'eclass/toolchain.eclass')
-rw-r--r-- | eclass/toolchain.eclass | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/eclass/toolchain.eclass b/eclass/toolchain.eclass index 23b0fa77b3d4..7dade5cf192c 100644 --- a/eclass/toolchain.eclass +++ b/eclass/toolchain.eclass @@ -159,15 +159,7 @@ fi IUSE+=" ${IUSE_DEF[*]/#/+}" -# Support upgrade paths here or people get pissed -if ! tc_version_is_at_least 4.8 || is_crosscompile || use multislot || [[ ${GCC_PV} == *_alpha* ]] ; then - SLOT="${GCC_CONFIG_VER}" -elif ! tc_version_is_at_least 5.0 ; then - SLOT="${GCC_BRANCH_VER}" -else - # Upstream changed versioning w/gcc-5+, so SLOT matches major only. #555164 - SLOT="${GCCMAJOR}" -fi +SLOT="${GCC_CONFIG_VER}" #---->> DEPEND <<---- |