Gentoo Archives: gentoo-commits

From: "vapier (vapier)" <vapier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-devel/autoconf/files: autoconf-2.13-test-fixes.patch
Date: Sat, 08 Sep 2007 06:32:43
Message-Id: E1ITtlV-0005o2-5k@stork.gentoo.org
1 vapier 07/09/08 06:25:57
2
3 Added: autoconf-2.13-test-fixes.patch
4 Log:
5 Fixup false test failures with newer gcc versions #146592.
6 (Portage version: 2.1.3.7)
7
8 Revision Changes Path
9 1.1 sys-devel/autoconf/files/autoconf-2.13-test-fixes.patch
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-devel/autoconf/files/autoconf-2.13-test-fixes.patch?rev=1.1&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-devel/autoconf/files/autoconf-2.13-test-fixes.patch?rev=1.1&content-type=text/plain
13
14 Index: autoconf-2.13-test-fixes.patch
15 ===================================================================
16 newer gcc versions don't provide g77, so if it doesn't exist,
17 don't bother trying to test it (and failing)
18
19 http://bugs.gentoo.org/146592
20
21 --- autoconf-2.13/testsuite/autoconf.s/syntax.exp
22 +++ autoconf-2.13/testsuite/autoconf.s/syntax.exp
23 @@ -5,6 +5,10 @@
24 set macros [exec sed -n $script $srcdir/../acspecific.m4]
25
26 foreach mac $macros {
27 + if { [string match "*F77*" "$mac"] && [catch {exec which g77} ignore_output] } then {
28 + send_user "XFAIL: $mac\n"
29 + continue
30 + }
31 send_user "$mac\n"
32 autoconf_test $mac $mac
33 }
34
35
36
37 --
38 gentoo-commits@g.o mailing list