diff options
author | Mike Frysinger <vapier@gentoo.org> | 2008-09-29 01:48:17 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2008-09-29 01:48:17 +0000 |
commit | 950e01693f7451f657732b96ac57bd390ef6f65c (patch) | |
tree | aad13096eb56719788f3360675eb9df3b6c6d14d /eclass | |
parent | arm/s390/sh/#238208 stable (diff) | |
download | historical-950e01693f7451f657732b96ac57bd390ef6f65c.tar.gz historical-950e01693f7451f657732b96ac57bd390ef6f65c.tar.bz2 historical-950e01693f7451f657732b96ac57bd390ef6f65c.zip |
have libffi check IUSE, not USE #199850
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 a64f5605dd11..c8df7adb18ca 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.361 2008/08/20 03:15:38 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/toolchain.eclass,v 1.362 2008/09/29 01:48:17 vapier Exp $ # # Maintainer: Toolchain Ninjas <toolchain@gentoo.org> @@ -2403,7 +2403,7 @@ is_gcj() { } is_libffi() { - has libffi ${USE} || return 1 + has libffi ${IUSE} || return 1 use libffi } |