diff options
author | Sam James <sam@gentoo.org> | 2022-11-23 01:22:38 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2022-11-23 01:22:52 +0000 |
commit | 141c29e6e6a3bf3ffdcfa3be99c0ef410dcb8bc9 (patch) | |
tree | 300ea4f6a044a33d4d0c84874b226a3a57b6019e /eclass | |
parent | dev-util/glslang: Fix cmake flag (diff) | |
download | gentoo-141c29e6e6a3bf3ffdcfa3be99c0ef410dcb8bc9.tar.gz gentoo-141c29e6e6a3bf3ffdcfa3be99c0ef410dcb8bc9.tar.bz2 gentoo-141c29e6e6a3bf3ffdcfa3be99c0ef410dcb8bc9.zip |
autotools.eclass: fix autoconf 2.13 minimum bound
Fixes: cece5b154234aa8c9982feae05f67df8db39e270
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/autotools.eclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/eclass/autotools.eclass b/eclass/autotools.eclass index 01053ff51379..e93338ac6b97 100644 --- a/eclass/autotools.eclass +++ b/eclass/autotools.eclass @@ -93,7 +93,7 @@ fi if [[ -n ${WANT_AUTOCONF} ]] ; then case ${WANT_AUTOCONF} in none) _autoconf_atom="" ;; # some packages don't require autoconf at all - 2.1) _autoconf_atom="~sys-devel/autoconf-2.13-r7" ;; + 2.1) _autoconf_atom=">=sys-devel/autoconf-2.13-r7:2.1" ;; # if you change the "latest" version here, change also autotools_env_setup latest|2.5) _autoconf_atom=">=sys-devel/autoconf-2.71-r5" ;; *) die "Invalid WANT_AUTOCONF value '${WANT_AUTOCONF}'" ;; |