diff options
author | Mike Frysinger <vapier@gentoo.org> | 2008-04-22 19:26:52 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2008-04-22 19:26:52 +0000 |
commit | e60d67abb7856705222067e4d79f0c55f670db01 (patch) | |
tree | d74833ee837a29883161a59834dffafe21c5d843 /eclass | |
parent | Add ~sparc (diff) | |
download | gentoo-2-e60d67abb7856705222067e4d79f0c55f670db01.tar.gz gentoo-2-e60d67abb7856705222067e4d79f0c55f670db01.tar.bz2 gentoo-2-e60d67abb7856705222067e4d79f0c55f670db01.zip |
fix typo pointed out by Kundai Midzi #218869
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 21b3aedd6364..40a789034823 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.353 2008/04/22 05:53:02 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/toolchain.eclass,v 1.354 2008/04/22 19:26:52 vapier Exp $ # # Maintainer: Toolchain Ninjas <toolchain@gentoo.org> @@ -1306,7 +1306,7 @@ gcc_do_configure() { elif [[ ${CTARGET} == *-freebsd* ]]; then confgcc="${confgcc} --enable-__cxa_atexit" fi - [[ ${GCCMAJOR}.${GCCMINOR} < 3.4 ]] && confgcc="${confgcc} ---disable-libunwind-exceptions" + [[ ${GCCMAJOR}.${GCCMINOR} < 3.4 ]] && confgcc="${confgcc} --disable-libunwind-exceptions" tc_version_is_at_least 4.3 && set -- "$@" \ --with-bugurl=http://bugs.gentoo.org/ \ |