diff options
author | Mike Frysinger <vapier@gentoo.org> | 2006-11-13 18:57:10 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2006-11-13 18:57:10 +0000 |
commit | 00112a50ab27f536776dcf67a13b586b855b14cb (patch) | |
tree | fe3f42051ca19c1259cd6acaff9cf57501d008b4 /eclass/toolchain.eclass | |
parent | Added ~x86 keyword, bug #154846. (diff) | |
download | historical-00112a50ab27f536776dcf67a13b586b855b14cb.tar.gz historical-00112a50ab27f536776dcf67a13b586b855b14cb.tar.bz2 historical-00112a50ab27f536776dcf67a13b586b855b14cb.zip |
catch *-linux targets
Diffstat (limited to 'eclass/toolchain.eclass')
-rw-r--r-- | eclass/toolchain.eclass | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/eclass/toolchain.eclass b/eclass/toolchain.eclass index 8a432ca68447..dcd0dc6d2d06 100644 --- a/eclass/toolchain.eclass +++ b/eclass/toolchain.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/toolchain.eclass,v 1.315 2006/10/14 20:27:21 swegener Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/toolchain.eclass,v 1.316 2006/11/13 18:57:10 vapier Exp $ HOMEPAGE="http://gcc.gnu.org/" LICENSE="GPL-2 LGPL-2.1" @@ -1261,6 +1261,7 @@ gcc_do_configure() { # disable a bunch of features or gcc goes boom local needed_libc="" case ${CTARGET} in + *-linux) needed_libc=no-fucking-clue;; *-dietlibc) needed_libc=dietlibc;; *-freebsd*) needed_libc=freebsd-lib;; *-gnu*) needed_libc=glibc;; |