summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/autoconf/autoconf/program_prefix.patch
diff options
context:
space:
mode:
authorRoss Burton <ross.burton@arm.com>2020-07-15 16:03:21 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2021-02-07 22:26:42 +0000
commitbdad4025c7d3e21fc99eb1055746aeb69fd8d915 (patch)
treecb34eb832858cff00d3c7281c38251a668c9bf63 /meta/recipes-devtools/autoconf/autoconf/program_prefix.patch
parent1dbef3ce981495ad08ca045c6ad80a7417f4619c (diff)
downloadpoky-bdad4025c7d3e21fc99eb1055746aeb69fd8d915.tar.gz
autoconf: upgrade to 2.71
After too many years, autoconf has made a new release. On the whole it is compatible with previous releases, but some macros are more specific about what they expose so minor tweaks to configure.ac may be required. autoconf also now invokes intltoolize, gtkdocize, and copies config.sub/guess, so there is less work for autotools.bbclass to do. - AC_HEADER_MAJOR-port-to-glibc-2.25.patch - add_musl_config.patch - autoconf-replace-w-option-in-shebangs-with-modern-use-warnings.patch - autoreconf-gnuconfigize.patch - check-automake-cross-warning.patch - config_site.patch - fix_path_xtra.patch - performance.patch Drop a number of patches which have been integrated upstream. - man-host-perl.patch Don't use the target perl path when building documentation at build time: - no-man.patch Don't build documentation in native builds to avoid further build dependencies. (From OE-Core rev: f5dd2e0acbb0aa4079c51aaeab8c26e743a4c714) Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/autoconf/autoconf/program_prefix.patch')
-rw-r--r--meta/recipes-devtools/autoconf/autoconf/program_prefix.patch36
1 files changed, 21 insertions, 15 deletions
diff --git a/meta/recipes-devtools/autoconf/autoconf/program_prefix.patch b/meta/recipes-devtools/autoconf/autoconf/program_prefix.patch
index 978a401f0a..4ff535fc15 100644
--- a/meta/recipes-devtools/autoconf/autoconf/program_prefix.patch
+++ b/meta/recipes-devtools/autoconf/autoconf/program_prefix.patch
@@ -1,20 +1,26 @@
1Upstream-Status: Pending 1From f4f19a5c03e8ae3b9cc93d24b76694f4b7b2eb76 Mon Sep 17 00:00:00 2001
2From: Ross Burton <ross.burton@intel.com>
3Date: Thu, 12 Mar 2020 17:28:38 +0000
4Subject: [PATCH 3/7] program_prefix.patch
2 5
3# 6Signed-off-by: Ross Burton <ross.burton@intel.com>
4# Patch managed by http://www.mn-logistik.de/unsupported/pxa250/patcher 7---
5# 8 lib/autoconf/general.m4 | 2 +-
9 1 file changed, 1 insertion(+), 1 deletion(-)
6 10
7--- autoconf-2.57/lib/autoconf/general.m4~program_prefix 11diff --git a/lib/autoconf/general.m4 b/lib/autoconf/general.m4
8+++ autoconf-2.57/lib/autoconf/general.m4 12index 16f0d074..4c5e0b36 100644
9@@ -1676,8 +1676,9 @@ 13--- a/lib/autoconf/general.m4
14+++ b/lib/autoconf/general.m4
15@@ -2070,7 +2070,7 @@ _AC_CANONICAL_SPLIT([target])
16
10 # The aliases save the names the user supplied, while $host etc. 17 # The aliases save the names the user supplied, while $host etc.
11 # will get canonicalized. 18 # will get canonicalized.
12 test -n "$target_alias" && 19-test -n "$target_alias" &&
13- test "$program_prefix$program_suffix$program_transform_name" = \ 20+test -n "$target_alias" && test "$target_alias" != "$host_alias" &&
14- NONENONEs,x,x, && 21 test "$program_prefix$program_suffix$program_transform_name" = \
15+ test "$target_alias" != "$host_alias" && 22 NONENONEs,x,x, &&
16+ test "$program_prefix$program_suffix$program_transform_name" = \
17+ NONENONEs,x,x, &&
18 program_prefix=${target_alias}-[]dnl 23 program_prefix=${target_alias}-[]dnl
19 ])# AC_CANONICAL_TARGET 24--
20 252.25.1
26