diff options
author | Mike Frysinger <vapier@gentoo.org> | 2006-07-30 17:43:01 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2006-07-30 17:43:01 +0000 |
commit | e8ccba762e60364d33b48ab375e0ed6e06953567 (patch) | |
tree | 5735ee62785aaa997f08cc0cbcdc8f93b0536f1f /eclass/toolchain.eclass | |
parent | ppc stable (diff) | |
download | historical-e8ccba762e60364d33b48ab375e0ed6e06953567.tar.gz historical-e8ccba762e60364d33b48ab375e0ed6e06953567.tar.bz2 historical-e8ccba762e60364d33b48ab375e0ed6e06953567.zip |
bless all gcc ebuilds with USE=test #141798
Diffstat (limited to 'eclass/toolchain.eclass')
-rw-r--r-- | eclass/toolchain.eclass | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/eclass/toolchain.eclass b/eclass/toolchain.eclass index 13335e360d20..f70c86b55e5c 100644 --- a/eclass/toolchain.eclass +++ b/eclass/toolchain.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/toolchain.eclass,v 1.297 2006/07/28 06:36:07 kevquinn Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/toolchain.eclass,v 1.298 2006/07/30 17:43:01 vapier Exp $ HOMEPAGE="http://gcc.gnu.org/" LICENSE="GPL-2 LGPL-2.1" @@ -128,10 +128,10 @@ fi #---->> SLOT+IUSE logic <<---- if [[ ${ETYPE} == "gcc-library" ]] ; then - IUSE="nls build" + IUSE="nls build test" SLOT="${CTARGET}-${SO_VERSION_SLOT:-5}" else - IUSE="multislot" + IUSE="multislot test" if [[ ${PN} != "kgcc64" ]] ; then IUSE="${IUSE} altivec bootstrap build doc fortran gcj gtk hardened multilib nls nocxx objc vanilla" |