commit: 141c29e6e6a3bf3ffdcfa3be99c0ef410dcb8bc9
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Nov 23 01:22:38 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Nov 23 01:22:52 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=141c29e6
autotools.eclass: fix autoconf 2.13 minimum bound
Fixes: cece5b154234aa8c9982feae05f67df8db39e270
Signed-off-by: Sam James <sam <AT> gentoo.org>
eclass/autotools.eclass | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
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}'" ;;