diff options
author | Mike Frysinger <vapier@gentoo.org> | 2007-05-24 02:46:53 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2007-05-24 02:46:53 +0000 |
commit | 2bce7797731ca929173e8796fe5ac27ff3bed315 (patch) | |
tree | 6d0fc683dcc5c46f4cf91fdefa96f43f1c5a5f5b /eclass/toolchain.eclass | |
parent | install man(1) pages (diff) | |
download | historical-2bce7797731ca929173e8796fe5ac27ff3bed315.tar.gz historical-2bce7797731ca929173e8796fe5ac27ff3bed315.tar.bz2 historical-2bce7797731ca929173e8796fe5ac27ff3bed315.zip |
dont export extraneous IUSE into custom gcc-* packages
Diffstat (limited to 'eclass/toolchain.eclass')
-rw-r--r-- | eclass/toolchain.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/toolchain.eclass b/eclass/toolchain.eclass index 5a8861d8987d..885644a4beb9 100644 --- a/eclass/toolchain.eclass +++ b/eclass/toolchain.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/toolchain.eclass,v 1.334 2007/05/19 03:16:40 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/toolchain.eclass,v 1.335 2007/05/24 02:46:53 vapier Exp $ # # Maintainer: Toolchain Ninjas <toolchain@gentoo.org> @@ -137,7 +137,7 @@ if [[ ${ETYPE} == "gcc-library" ]] ; then else IUSE="multislot test" - if [[ ${PN} != "kgcc64" ]] ; then + if [[ ${PN} != "kgcc64" && ${PN} != gcc-* ]] ; then IUSE="${IUSE} altivec build fortran nls nocxx" [[ -n ${PIE_VER} ]] && IUSE="${IUSE} nopie" [[ -n ${PP_VER} ]] && IUSE="${IUSE} nossp" |