Gentoo Archives: gentoo-commits

From: "Mike Frysinger (vapier)" <vapier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in eclass: toolchain.eclass
Date: Mon, 29 Sep 2008 01:48:22
Message-Id: E1Kk7s1-0003b2-Lh@stork.gentoo.org
1 vapier 08/09/29 01:48:17
2
3 Modified: toolchain.eclass
4 Log:
5 have libffi check IUSE, not USE #199850
6
7 Revision Changes Path
8 1.362 eclass/toolchain.eclass
9
10 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/toolchain.eclass?rev=1.362&view=markup
11 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/toolchain.eclass?rev=1.362&content-type=text/plain
12 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/toolchain.eclass?r1=1.361&r2=1.362
13
14 Index: toolchain.eclass
15 ===================================================================
16 RCS file: /var/cvsroot/gentoo-x86/eclass/toolchain.eclass,v
17 retrieving revision 1.361
18 retrieving revision 1.362
19 diff -u -r1.361 -r1.362
20 --- toolchain.eclass 20 Aug 2008 03:15:38 -0000 1.361
21 +++ toolchain.eclass 29 Sep 2008 01:48:17 -0000 1.362
22 @@ -1,6 +1,6 @@
23 # Copyright 1999-2008 Gentoo Foundation
24 # Distributed under the terms of the GNU General Public License v2
25 -# $Header: /var/cvsroot/gentoo-x86/eclass/toolchain.eclass,v 1.361 2008/08/20 03:15:38 vapier Exp $
26 +# $Header: /var/cvsroot/gentoo-x86/eclass/toolchain.eclass,v 1.362 2008/09/29 01:48:17 vapier Exp $
27 #
28 # Maintainer: Toolchain Ninjas <toolchain@g.o>
29
30 @@ -2403,7 +2403,7 @@
31 }
32
33 is_libffi() {
34 - has libffi ${USE} || return 1
35 + has libffi ${IUSE} || return 1
36 use libffi
37 }