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: Sat, 29 Dec 2012 06:45:26
Message-Id: 20121229064506.CD1302171D@flycatcher.gentoo.org
1 vapier 12/12/29 06:45:06
2
3 Modified: toolchain.eclass
4 Log:
5 enable libffi with gcc-3.0+ (i did not have a local copy at the time to check against)
6
7 Revision Changes Path
8 1.566 eclass/toolchain.eclass
9
10 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/toolchain.eclass?rev=1.566&view=markup
11 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/toolchain.eclass?rev=1.566&content-type=text/plain
12 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/toolchain.eclass?r1=1.565&r2=1.566
13
14 Index: toolchain.eclass
15 ===================================================================
16 RCS file: /var/cvsroot/gentoo-x86/eclass/toolchain.eclass,v
17 retrieving revision 1.565
18 retrieving revision 1.566
19 diff -u -r1.565 -r1.566
20 --- toolchain.eclass 29 Dec 2012 06:44:03 -0000 1.565
21 +++ toolchain.eclass 29 Dec 2012 06:45:06 -0000 1.566
22 @@ -1,6 +1,6 @@
23 # Copyright 1999-2012 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.565 2012/12/29 06:44:03 vapier Exp $
26 +# $Header: /var/cvsroot/gentoo-x86/eclass/toolchain.eclass,v 1.566 2012/12/29 06:45:06 vapier Exp $
27 #
28 # Maintainer: Toolchain Ninjas <toolchain@g.o>
29
30 @@ -779,7 +779,7 @@
31 fi
32
33 # Prevent libffi from being installed
34 - if tc_version_is_at_least 3.1 ; then
35 + if tc_version_is_at_least 3.0 ; then
36 sed -i -e 's/\(install.*:\) install-.*recursive/\1/' "${S}"/libffi/Makefile.in || die
37 sed -i -e 's/\(install-data-am:\).*/\1/' "${S}"/libffi/include/Makefile.in || die
38 fi