diff options
author | Mike Frysinger <vapier@gentoo.org> | 2012-06-02 20:18:57 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2012-06-02 20:18:57 +0000 |
commit | 938121c6e00c49a58347135897a95b63ca73fbb8 (patch) | |
tree | 7566e6d4f731d75f4740f1f32788b059c95a1dd8 /eclass | |
parent | punt pkg_postrm as we no longer install these files into the / paths (rev 1.5... (diff) | |
download | historical-938121c6e00c49a58347135897a95b63ca73fbb8.tar.gz historical-938121c6e00c49a58347135897a95b63ca73fbb8.tar.bz2 historical-938121c6e00c49a58347135897a95b63ca73fbb8.zip |
drop multilib_env setup calls since crossdev supports multilib now, and host builds provide info via the profile
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/toolchain.eclass | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/eclass/toolchain.eclass b/eclass/toolchain.eclass index e28a5df4ba60..13f2faf5774a 100644 --- a/eclass/toolchain.eclass +++ b/eclass/toolchain.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/toolchain.eclass,v 1.542 2012/06/02 20:16:59 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/toolchain.eclass,v 1.543 2012/06/02 20:18:57 vapier Exp $ # # Maintainer: Toolchain Ninjas <toolchain@gentoo.org> @@ -550,14 +550,6 @@ toolchain_pkg_setup() { "This is to try and cut down on people filing bugs for a compiler we do not currently support." fi - # Setup variables which would normally be in the profile - if is_crosscompile ; then - multilib_env ${CTARGET} - if ! is_multilib ; then - MULTILIB_ABIS=${DEFAULT_ABI} - fi - fi - # we dont want to use the installed compiler's specs to build gcc! unset GCC_SPECS @@ -1399,7 +1391,6 @@ gcc_do_filter_flags() { } toolchain_src_compile() { - multilib_env ${CTARGET} gcc_do_filter_flags einfo "CFLAGS=\"${CFLAGS}\"" einfo "CXXFLAGS=\"${CXXFLAGS}\"" |