diff options
author | Mike Frysinger <vapier@gentoo.org> | 2013-06-17 02:23:45 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2013-06-17 02:23:45 +0000 |
commit | 7d51eab487fbb68c22c8f27d76cb28d819940501 (patch) | |
tree | f342ea81b18f75d7769e86162de01184e5413447 /eclass | |
parent | Fix from upstream for f_frsize with statfs64 on 32bit arches. (diff) | |
download | gentoo-2-7d51eab487fbb68c22c8f27d76cb28d819940501.tar.gz gentoo-2-7d51eab487fbb68c22c8f27d76cb28d819940501.tar.bz2 gentoo-2-7d51eab487fbb68c22c8f27d76cb28d819940501.zip |
handle musl C library #473328 by Anthony Basile
Diffstat (limited to '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 988ce82b3c34..cb3f10da59f1 100644 --- a/eclass/toolchain.eclass +++ b/eclass/toolchain.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/toolchain.eclass,v 1.593 2013/05/24 21:07:21 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/toolchain.eclass,v 1.594 2013/06/17 02:23:45 vapier Exp $ # # Maintainer: Toolchain Ninjas <toolchain@gentoo.org> @@ -1147,6 +1147,7 @@ gcc_do_configure() { *-freebsd*) needed_libc=freebsd-lib;; *-gnu*) needed_libc=glibc;; *-klibc) needed_libc=klibc;; + *-musl*) needed_libc=musl;; *-uclibc*) if ! echo '#include <features.h>' | \ $(tc-getCPP ${CTARGET}) -E -dD - 2>/dev/null | \ |