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 | c170b43223d2dfd020a6cfe218b8da297a23b790 (patch) | |
tree | db03be427988600af5877f31f2d4e53c5f4b64af /eclass | |
parent | install man(1) pages (diff) | |
download | gentoo-2-c170b43223d2dfd020a6cfe218b8da297a23b790.tar.gz gentoo-2-c170b43223d2dfd020a6cfe218b8da297a23b790.tar.bz2 gentoo-2-c170b43223d2dfd020a6cfe218b8da297a23b790.zip |
dont export extraneous IUSE into custom gcc-* packages
Diffstat (limited to '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" |