summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2024-01-14 21:19:46 +0100
committerMichał Górny <mgorny@gentoo.org>2024-01-15 16:58:23 +0100
commit1ee062ba1d57ad391adee1c135dcf474dc30d6b4 (patch)
tree30559a888fd26b75bb6d9a29786e2bd9ae2d40ef /sys-devel/autoconf/files/autoconf-2.13-test-fixes.patch
parentMove {sys-devel → dev-build}/autoconf-archive (diff)
downloadgentoo-1ee062ba1d57ad391adee1c135dcf474dc30d6b4.tar.gz
gentoo-1ee062ba1d57ad391adee1c135dcf474dc30d6b4.tar.bz2
gentoo-1ee062ba1d57ad391adee1c135dcf474dc30d6b4.zip
Move {sys-devel → dev-build}/autoconf
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'sys-devel/autoconf/files/autoconf-2.13-test-fixes.patch')
-rw-r--r--sys-devel/autoconf/files/autoconf-2.13-test-fixes.patch18
1 files changed, 0 insertions, 18 deletions
diff --git a/sys-devel/autoconf/files/autoconf-2.13-test-fixes.patch b/sys-devel/autoconf/files/autoconf-2.13-test-fixes.patch
deleted file mode 100644
index b8a7e3b8ce99..000000000000
--- a/sys-devel/autoconf/files/autoconf-2.13-test-fixes.patch
+++ /dev/null
@@ -1,18 +0,0 @@
-newer gcc versions don't provide g77, so if it doesn't exist,
-don't bother trying to test it (and failing)
-
-http://bugs.gentoo.org/146592
-
---- autoconf-2.13/testsuite/autoconf.s/syntax.exp
-+++ autoconf-2.13/testsuite/autoconf.s/syntax.exp
-@@ -5,6 +5,10 @@
- set macros [exec sed -n $script $srcdir/../acspecific.m4]
-
- foreach mac $macros {
-+ if { [string match "*F77*" "$mac"] && [catch {exec which g77} ignore_output] } then {
-+ send_user "XFAIL: $mac\n"
-+ continue
-+ }
- send_user "$mac\n"
- autoconf_test $mac $mac
- }