diff options
author | Travis Tilley <lv@gentoo.org> | 2004-10-11 04:42:55 +0000 |
---|---|---|
committer | Travis Tilley <lv@gentoo.org> | 2004-10-11 04:42:55 +0000 |
commit | 9d16a089bba5352d86941dc8e9f01213a44f701a (patch) | |
tree | 3942d7506dc32cd37a8f5f1a7eaa83041b83aa96 /eclass | |
parent | fixing the digest even if noone complained in the past 7 weeks ;) (diff) | |
download | historical-9d16a089bba5352d86941dc8e9f01213a44f701a.tar.gz historical-9d16a089bba5352d86941dc8e9f01213a44f701a.tar.bz2 historical-9d16a089bba5352d86941dc8e9f01213a44f701a.zip |
we dont want to use the installed compilers' specs to build gcc!
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/toolchain.eclass | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/eclass/toolchain.eclass b/eclass/toolchain.eclass index c6301dba50ff..97c4bd74e946 100644 --- a/eclass/toolchain.eclass +++ b/eclass/toolchain.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/toolchain.eclass,v 1.28 2004/10/11 04:21:54 lv Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/toolchain.eclass,v 1.29 2004/10/11 04:42:55 lv Exp $ # # This eclass should contain general toolchain-related functions that are # expected to not change, or change much. @@ -120,6 +120,9 @@ gcc-compiler-pkg_setup() { eerror "Please enable multilib if you want to use both n32 & n64"; die "Invalid USE flag combination"; fi + + # we dont want to use the installed compiler's specs to build gcc! + unset GCC_SPECS || : } gcc-library-pkg_setup() { |