Gentoo Archives: gentoo-commits

From: "Fabian Groffen (grobian)" <grobian@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/libffi: libffi-3.0.11.ebuild
Date: Tue, 02 Oct 2012 06:15:13
Message-Id: 20121002061502.DB59921600@flycatcher.gentoo.org
1 grobian 12/10/02 06:15:02
2
3 Modified: libffi-3.0.11.ebuild
4 Log:
5 Fix non-fatal typo effectively disabling the link-check
6
7 Revision Changes Path
8 1.13 dev-libs/libffi/libffi-3.0.11.ebuild
9
10 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libffi/libffi-3.0.11.ebuild?rev=1.13&view=markup
11 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libffi/libffi-3.0.11.ebuild?rev=1.13&content-type=text/plain
12 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libffi/libffi-3.0.11.ebuild?r1=1.12&r2=1.13
13
14 Index: libffi-3.0.11.ebuild
15 ===================================================================
16 RCS file: /var/cvsroot/gentoo-x86/dev-libs/libffi/libffi-3.0.11.ebuild,v
17 retrieving revision 1.12
18 retrieving revision 1.13
19 diff -u -r1.12 -r1.13
20 --- libffi-3.0.11.ebuild 29 Sep 2012 14:04:36 -0000 1.12
21 +++ libffi-3.0.11.ebuild 2 Oct 2012 06:15:02 -0000 1.13
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/dev-libs/libffi/libffi-3.0.11.ebuild,v 1.12 2012/09/29 14:04:36 grobian Exp $
26 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libffi/libffi-3.0.11.ebuild,v 1.13 2012/10/02 06:15:02 grobian Exp $
27
28 EAPI=4
29
30 @@ -30,7 +30,7 @@
31 local base="${T}"/conftest
32 echo 'int main() { }' > "${base}".c
33 $(tc-getCC) -o "${base}" "${base}".c -lffi >&/dev/null
34 - if [ $? -eq = 0 ]; then
35 + if [ $? -eq 0 ]; then
36 eerror "The linker reported linking against -lffi to be working while it shouldn't have."
37 eerror "This is wrong and you should find and delete the old copy of libffi before continuing."
38 die "The system is in inconsistent state with unknown libffi installed."