summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDiego Elio Pettenò <flameeyes@gentoo.org>2007-01-08 23:25:30 +0000
committerDiego Elio Pettenò <flameeyes@gentoo.org>2007-01-08 23:25:30 +0000
commit72363c5326c8cf1dfefb527760dbe2a186f677f9 (patch)
tree4d58c1cd273a335b5a78b9dccf153c2d1f01312c /eclass/autotools.eclass
parentUpgrade/downgrade is now sane between 1.12.8-r2 and 1.13.0_alpha10-r2 (diff)
downloadhistorical-72363c5326c8cf1dfefb527760dbe2a186f677f9.tar.gz
historical-72363c5326c8cf1dfefb527760dbe2a186f677f9.tar.bz2
historical-72363c5326c8cf1dfefb527760dbe2a186f677f9.zip
If WANT_AUTOCONF or WANT_AUTOMAKE are missing, default to latest, and hope this won't break more.
Diffstat (limited to 'eclass/autotools.eclass')
-rw-r--r--eclass/autotools.eclass5
1 files changed, 4 insertions, 1 deletions
diff --git a/eclass/autotools.eclass b/eclass/autotools.eclass
index a281a1dc0015..bcb38ac61aad 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.62 2007/01/08 23:04:49 flameeyes Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/autotools.eclass,v 1.63 2007/01/08 23:25:30 flameeyes Exp $
#
# Author: Diego Pettenò <flameeyes@gentoo.org>
# Enhancements: Martin Schlemmer <azarah@gentoo.org>
@@ -12,6 +12,9 @@
inherit eutils libtool
+[[ -z ${WANT_AUTOCONF} ]] && WANT_AUTOCONF="latest"
+[[ -z ${WANT_AUTOMAKE} ]] && WANT_AUTOMAKE="latest"
+
_automake_atom="sys-devel/automake"
_autoconf_atom="sys-devel/autoconf"
if [[ -n ${WANT_AUTOMAKE} ]]; then