summaryrefslogtreecommitdiffstats
path: root/rules/host-autotools-autoconf.make
diff options
context:
space:
mode:
authorChristian Melki <christian.melki@t2data.com>2022-05-13 14:56:53 +0200
committerMichael Olbrich <m.olbrich@pengutronix.de>2022-05-18 19:44:53 +0200
commit25256dd1521c489848695e580e8c0a69ea48dcb3 (patch)
tree934ab9e0c25c9914c9c2077ca9f3e67e562ce57f /rules/host-autotools-autoconf.make
parent0f6b26a4fede60cbbd05adc5a96807951ec80632 (diff)
downloadptxdist-25256dd1521c489848695e580e8c0a69ea48dcb3.tar.gz
ptxdist-25256dd1521c489848695e580e8c0a69ea48dcb3.tar.xz
host-autotools-autoconf: Version bump. 2.69 -> 2.71.
Tools are starting to prereq version 2.71. So might aswell swallow the bitter pill and upgrade autoconf. * License file changed. Nothing but whitespace, misspelling and URL fixes. * Add a sed line for a standalone line in the autoconf binary. It's a full path trailer.m4, which didn't match with the previous rules. Add a separate one as it might get removed either way in the next version. Looks like the autoconf team is planning a rewrite in the generation mechanism using perl instead(?). Signed-off-by: Christian Melki <christian.melki@t2data.com> Message-Id: <20220513125653.955993-1-christian.melki@t2data.com> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
Diffstat (limited to 'rules/host-autotools-autoconf.make')
-rw-r--r--rules/host-autotools-autoconf.make13
1 files changed, 8 insertions, 5 deletions
diff --git a/rules/host-autotools-autoconf.make b/rules/host-autotools-autoconf.make
index a5e6d6ea9..994ca51fe 100644
--- a/rules/host-autotools-autoconf.make
+++ b/rules/host-autotools-autoconf.make
@@ -14,8 +14,8 @@ LAZY_PACKAGES-$(PTXCONF_HOST_AUTOTOOLS_AUTOCONF) += host-autotools-autoconf
#
# Paths and names
#
-HOST_AUTOTOOLS_AUTOCONF_VERSION := 2.69
-HOST_AUTOTOOLS_AUTOCONF_MD5 := 50f97f4159805e374639a73e2636f22e
+HOST_AUTOTOOLS_AUTOCONF_VERSION := 2.71
+HOST_AUTOTOOLS_AUTOCONF_MD5 := 12cfa1687ffa2606337efe1a64416106
HOST_AUTOTOOLS_AUTOCONF := autoconf-$(HOST_AUTOTOOLS_AUTOCONF_VERSION)
HOST_AUTOTOOLS_AUTOCONF_SUFFIX := tar.xz
HOST_AUTOTOOLS_AUTOCONF_URL := $(call ptx/mirror, GNU, autoconf/$(HOST_AUTOTOOLS_AUTOCONF).$(HOST_AUTOTOOLS_AUTOCONF_SUFFIX))
@@ -23,9 +23,9 @@ HOST_AUTOTOOLS_AUTOCONF_SOURCE := $(SRCDIR)/$(HOST_AUTOTOOLS_AUTOCONF).$(HOST_AU
HOST_AUTOTOOLS_AUTOCONF_DIR := $(HOST_BUILDDIR)/$(HOST_AUTOTOOLS_AUTOCONF)
HOST_AUTOTOOLS_AUTOCONF_LICENSE := GPL-2.0-only AND GPL-3.0-only AND Autoconf-exception-3.0
HOST_AUTOTOOLS_AUTOCONF_LICENSE_FILES := \
- file://COPYING;md5=751419260aa954499f7abaabaa882bbe \
- file://COPYINGv3;md5=d32239bcb673463ab874e80d47fae504 \
- file://COPYING.EXCEPTION;md5=fdef168ebff3bc2f13664c365a5fb515
+ file://COPYING;md5=cc3f3a7596cb558bbd9eb7fbaa3ef16c \
+ file://COPYINGv3;md5=1ebbd3e34237af26da5dc08a4e440464 \
+ file://COPYING.EXCEPTION;md5=eb129370fe0bb2068cc4e48ff8d31260
$(STATEDIR)/autogen-tools: $(STATEDIR)/host-autotools-autoconf.install.post
@@ -50,6 +50,9 @@ $(STATEDIR)/host-autotools-autoconf.install.post:
-e "s;'/[^']*/sysroot-host\(/bin/m4\)';'$(PTXDIST_SYSROOT_HOST)\1';g" \
$(HOST_AUTOTOOLS_AUTOCONF_PKGDIR)/bin/* \
$(HOST_AUTOTOOLS_AUTOCONF_PKGDIR)/share/autoconf/autom4te.cfg
+ @sed -i \
+ -e "s;\(/share/autoconf/\);$(PTXDIST_SYSROOT_HOST)\1;g" \
+ $(HOST_AUTOTOOLS_AUTOCONF_PKGDIR)/bin/autoconf
@$(call world/install.post, HOST_AUTOTOOLS_AUTOCONF)
@$(call touch)