diff options
author | Sam James <sam@gentoo.org> | 2022-01-15 21:41:17 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2022-01-22 22:22:25 +0000 |
commit | 6d2d4a44b2eb9a7a93a1b3d7b847674c75cdc0de (patch) | |
tree | c9681f361b1e11b0a59ae353b9c74e40af7b2448 /eclass/autotools.eclass | |
parent | autotools.eclass: update for latest automake 1.16.4 (diff) | |
download | gentoo-6d2d4a44b2eb9a7a93a1b3d7b847674c75cdc0de.tar.gz gentoo-6d2d4a44b2eb9a7a93a1b3d7b847674c75cdc0de.tar.bz2 gentoo-6d2d4a44b2eb9a7a93a1b3d7b847674c75cdc0de.zip |
autotools.eclass: update for autoconf 2.71
Closes: https://bugs.gentoo.org/827852
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'eclass/autotools.eclass')
-rw-r--r-- | eclass/autotools.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/autotools.eclass b/eclass/autotools.eclass index af50b1d70fcd..85be205c1032 100644 --- a/eclass/autotools.eclass +++ b/eclass/autotools.eclass @@ -95,7 +95,7 @@ if [[ -n ${WANT_AUTOCONF} ]] ; then none) _autoconf_atom="" ;; # some packages don't require autoconf at all 2.1) _autoconf_atom="~sys-devel/autoconf-2.13" ;; # if you change the "latest" version here, change also autotools_env_setup - latest|2.5) _autoconf_atom=">=sys-devel/autoconf-2.69" ;; + latest|2.5) _autoconf_atom=">=sys-devel/autoconf-2.71" ;; *) die "Invalid WANT_AUTOCONF value '${WANT_AUTOCONF}'" ;; esac export WANT_AUTOCONF @@ -528,7 +528,7 @@ autotools_env_setup() { [[ ${WANT_AUTOMAKE} == "latest" ]] && \ die "Cannot find the latest automake! Tried ${_LATEST_AUTOMAKE[*]}" fi - [[ ${WANT_AUTOCONF} == "latest" ]] && export WANT_AUTOCONF=2.5 + [[ ${WANT_AUTOCONF} == "latest" ]] && export WANT_AUTOCONF=2.71 } # @FUNCTION: autotools_run_tool |