diff options
author | Martin Schlemmer <azarah@gentoo.org> | 2005-03-16 16:26:07 +0000 |
---|---|---|
committer | Martin Schlemmer <azarah@gentoo.org> | 2005-03-16 16:26:07 +0000 |
commit | b2743ee6c22bbbb43356cf8aeab2a9165b7d7bf3 (patch) | |
tree | 3e5e6d237bb374caeec2f2a669207a7ca07b08d6 /eclass | |
parent | version bump (diff) | |
download | gentoo-2-b2743ee6c22bbbb43356cf8aeab2a9165b7d7bf3.tar.gz gentoo-2-b2743ee6c22bbbb43356cf8aeab2a9165b7d7bf3.tar.bz2 gentoo-2-b2743ee6c22bbbb43356cf8aeab2a9165b7d7bf3.zip |
Fix typo, bug #85490.
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 b4f0d754f225..85cbe802a674 100644 --- a/eclass/toolchain.eclass +++ b/eclass/toolchain.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/toolchain.eclass,v 1.127 2005/03/16 06:35:22 eradicator Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/toolchain.eclass,v 1.128 2005/03/16 16:26:07 azarah Exp $ HOMEPAGE="http://www.gnu.org/software/gcc/gcc.html" LICENSE="GPL-2 LGPL-2.1" @@ -1942,7 +1942,7 @@ is_uclibc() { } is_cxx() { - gcc-lang-supported cxx || return 1 + gcc-lang-supported 'c++' || return 1 use build && return 1 use ! nocxx } |