diff options
author | 2010-06-20 05:04:01 +0000 | |
---|---|---|
committer | 2010-06-20 05:04:01 +0000 | |
commit | c71422d3e806a8c940d7dead48374d3617aefb32 (patch) | |
tree | 115a42a79ce33cf59d9ee7d022a946e62c0a86da /eclass | |
parent | Version bump #323795 by George. (diff) | |
download | historical-c71422d3e806a8c940d7dead48374d3617aefb32.tar.gz historical-c71422d3e806a8c940d7dead48374d3617aefb32.tar.bz2 historical-c71422d3e806a8c940d7dead48374d3617aefb32.zip |
respect USE=openmp even when cross-compiling #199995 by Quentin Casasnovas
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 9d6239317367..75153018f654 100644 --- a/eclass/toolchain.eclass +++ b/eclass/toolchain.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/toolchain.eclass,v 1.429 2010/06/18 10:13:17 zorry Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/toolchain.eclass,v 1.430 2010/06/20 05:04:01 vapier Exp $ # # Maintainer: Toolchain Ninjas <toolchain@gentoo.org> @@ -1465,7 +1465,7 @@ gcc_do_configure() { fi if [[ ${GCCMAJOR}.${GCCMINOR} > 4.1 ]] ; then - confgcc="${confgcc} --disable-bootstrap --disable-libgomp" + confgcc="${confgcc} --disable-bootstrap" fi else if tc-is-static-only ; then |