diff options
author | Piotr Jaroszyński <peper@gentoo.org> | 2006-10-27 14:19:07 +0000 |
---|---|---|
committer | Piotr Jaroszyński <peper@gentoo.org> | 2006-10-27 14:19:07 +0000 |
commit | 9f9d8d55af266be6f19ee05502db7749216bc034 (patch) | |
tree | 5e3ee2657c85c6adbe93225836279fa11618e15a /eclass | |
parent | Fix use of autotools (diff) | |
download | gentoo-2-9f9d8d55af266be6f19ee05502db7749216bc034.tar.gz gentoo-2-9f9d8d55af266be6f19ee05502db7749216bc034.tar.bz2 gentoo-2-9f9d8d55af266be6f19ee05502db7749216bc034.zip |
Fix dep for WANT_AUTOMAKE=latest
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 86542801227a..31c69c36c13d 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.54 2006/10/26 22:39:35 flameeyes Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/autotools.eclass,v 1.55 2006/10/27 14:19:07 peper Exp $ # # Author: Diego Pettenò <flameeyes@gentoo.org> # Enhancements: Martin Schlemmer <azarah@gentoo.org> @@ -14,7 +14,7 @@ inherit eutils libtool _automake_atom="sys-devel/automake" _autoconf_atom="sys-devel/autoconf" -if [[ -n ${WANT_AUTOMAKE} ]] && [[ ${WANT_AUTOMAKE} != "latest" ]]; then +if [[ -n ${WANT_AUTOMAKE} ]]; then case ${WANT_AUTOMAKE} in # workaround while we have different versions of automake in arch and ~arch latest) _automake_atom="|| ( =sys-devel/automake-1.10* =sys-devel/automake-1.9* )" ;; |