diff options
author | Diego Elio Pettenò <flameeyes@gentoo.org> | 2006-09-20 18:55:44 +0000 |
---|---|---|
committer | Diego Elio Pettenò <flameeyes@gentoo.org> | 2006-09-20 18:55:44 +0000 |
commit | 4ddb7b3e9eac82acaaea9c85feb5566e32b1413e (patch) | |
tree | 3afeb989322b6e1ab7420b6d9056a14bfc237672 /eclass | |
parent | Add explicit dependency on automake 1.5, thanks to Gabe Berke-Williams for re... (diff) | |
download | historical-4ddb7b3e9eac82acaaea9c85feb5566e32b1413e.tar.gz historical-4ddb7b3e9eac82acaaea9c85feb5566e32b1413e.tar.bz2 historical-4ddb7b3e9eac82acaaea9c85feb5566e32b1413e.zip |
Actually, we need autoconf >=2.50, because of the crazy versioning scheme of autoconf.
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 ea6a8b2c22b1..c55abfa80d0b 100644 --- a/eclass/autotools.eclass +++ b/eclass/autotools.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/autotools.eclass,v 1.41 2006/09/20 15:10:03 flameeyes Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/autotools.eclass,v 1.42 2006/09/20 18:55:44 flameeyes Exp $ # # Author: Diego Pettenò <flameeyes@gentoo.org> # Enhancements: Martin Schlemmer <azarah@gentoo.org> @@ -18,7 +18,7 @@ _autoconf_atom="sys-devel/autoconf" if [[ -n ${WANT_AUTOCONF} ]]; then case ${WANT_AUTOCONF} in 2.1) _autoconf_atom="=sys-devel/autoconf-${WANT_AUTOCONF}*" ;; - 2.5) _autoconf_atom=">=sys-devel/autoconf-2.5" ;; + 2.5) _autoconf_atom=">=sys-devel/autoconf-2.50" ;; esac fi DEPEND="${_automake_atom} |