diff options
author | Michał Górny <mgorny@gentoo.org> | 2016-06-21 18:20:18 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2016-06-21 19:20:46 +0200 |
commit | 870b5b35eac735678dbd26650872cc8aeb38c305 (patch) | |
tree | 1e029198da6eb28eb7e3b47515337dcf0be4e9f2 /eclass/toolchain-binutils.eclass | |
parent | toolchain.eclass: [QA] Remove meaningless USE=multislot, #584610 (diff) | |
download | gentoo-870b5b35eac735678dbd26650872cc8aeb38c305.tar.gz gentoo-870b5b35eac735678dbd26650872cc8aeb38c305.tar.bz2 gentoo-870b5b35eac735678dbd26650872cc8aeb38c305.zip |
toolchain-binutils.eclass: [QA] Remove USE=multislot, #584610
The USE=multislot was used only to control build-time blocker on
previous versions of binutils. However, there is no technical reason not
to have multiple binutils versions installed at build time (or run
time). Considering that the flag does not control the installed files or
the package in any other way, it is an invalid use of USE flags.
Diffstat (limited to 'eclass/toolchain-binutils.eclass')
-rw-r--r-- | eclass/toolchain-binutils.eclass | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/eclass/toolchain-binutils.eclass b/eclass/toolchain-binutils.eclass index a23300ffda0f..34c85696aebb 100644 --- a/eclass/toolchain-binutils.eclass +++ b/eclass/toolchain-binutils.eclass @@ -88,7 +88,7 @@ if version_is_at_least 2.18 ; then else LICENSE="|| ( GPL-2 LGPL-2 )" fi -IUSE="cxx multislot multitarget nls static-libs test vanilla" +IUSE="cxx multitarget nls static-libs test vanilla" if version_is_at_least 2.19 ; then IUSE+=" zlib" fi @@ -97,7 +97,6 @@ SLOT="${BVER}" RDEPEND=">=sys-devel/binutils-config-3" in_iuse zlib && RDEPEND+=" zlib? ( sys-libs/zlib )" DEPEND="${RDEPEND} - !multislot? ( !<${CATEGORY}/${P} ) test? ( dev-util/dejagnu ) nls? ( sys-devel/gettext ) sys-devel/flex |