summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2006-04-23 21:33:32 +0000
committerMike Frysinger <vapier@gentoo.org>2006-04-23 21:33:32 +0000
commite335b407e29e494826f437c9509792e2c7a8c908 (patch)
tree34dbcd83daa29a5e3b86fab5a009267412715499 /eclass/toolchain.eclass
parentAdd ~x86-fbsd keyword. (diff)
downloadgentoo-2-e335b407e29e494826f437c9509792e2c7a8c908.tar.gz
gentoo-2-e335b407e29e494826f437c9509792e2c7a8c908.tar.bz2
gentoo-2-e335b407e29e494826f437c9509792e2c7a8c908.zip
match -gnueabi as well when finding needed libc
Diffstat (limited to 'eclass/toolchain.eclass')
-rw-r--r--eclass/toolchain.eclass4
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/toolchain.eclass b/eclass/toolchain.eclass
index 92fd65fc77d9..ebf4f6cd0eae 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.272 2006/04/19 00:53:44 flameeyes Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/toolchain.eclass,v 1.273 2006/04/23 21:33:32 vapier Exp $
HOMEPAGE="http://gcc.gnu.org/"
LICENSE="GPL-2 LGPL-2.1"
@@ -1180,7 +1180,7 @@ gcc_do_configure() {
case ${CTARGET} in
*-dietlibc) needed_libc=dietlibc;;
*-freebsd*) needed_libc=freebsd-lib;;
- *-gnu) needed_libc=glibc;;
+ *-gnu*) needed_libc=glibc;;
*-klibc) needed_libc=klibc;;
*-uclibc) needed_libc=uclibc;;
avr) confgcc="${confgcc} --enable-shared --disable-threads";;