diff options
author | Mike Frysinger <vapier@gentoo.org> | 2014-08-12 12:15:55 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2014-08-12 12:15:55 +0000 |
commit | 86b17f400fe4d6c687e5315c559c1bbef995c9e0 (patch) | |
tree | 709da3cdcdd300c6f9e0c11ffd05930324e969d6 /eclass | |
parent | Keyword for ~ppc and ~ppc64, bug #519618 (diff) | |
download | gentoo-2-86b17f400fe4d6c687e5315c559c1bbef995c9e0.tar.gz gentoo-2-86b17f400fe4d6c687e5315c559c1bbef995c9e0.tar.bz2 gentoo-2-86b17f400fe4d6c687e5315c559c1bbef995c9e0.zip |
require autoconf-2.69 now that it is stable for a while #507374
Diffstat (limited to '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 616fdd0b7afe..f43f6a75e028 100644 --- a/eclass/autotools.eclass +++ b/eclass/autotools.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/autotools.eclass,v 1.162 2014/07/11 08:21:58 ulm Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/autotools.eclass,v 1.163 2014/08/12 12:15:55 vapier Exp $ # @ECLASS: autotools.eclass # @MAINTAINER: @@ -74,7 +74,7 @@ if [[ -n ${WANT_AUTOCONF} ]] ; then none) _autoconf_atom="" ;; # some packages don't require autoconf at all 2.1) _autoconf_atom="=sys-devel/autoconf-${WANT_AUTOCONF}*" ;; # if you change the "latest" version here, change also autotools_env_setup - latest|2.5) _autoconf_atom=">=sys-devel/autoconf-2.68" ;; + latest|2.5) _autoconf_atom=">=sys-devel/autoconf-2.69" ;; *) die "Invalid WANT_AUTOCONF value '${WANT_AUTOCONF}'" ;; esac export WANT_AUTOCONF |