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
commitf64dc0da55adb5949869985a504cb0edd65ec73a (patch)
treefe4a718b0fc6e4812ed0a5e9be8e0e55d6b62fa9 /eclass/autotools.eclass
parentUpgrade/downgrade is now sane between 1.12.8-r2 and 1.13.0_alpha10-r2 (diff)
downloadgentoo-2-f64dc0da55adb5949869985a504cb0edd65ec73a.tar.gz
gentoo-2-f64dc0da55adb5949869985a504cb0edd65ec73a.tar.bz2
gentoo-2-f64dc0da55adb5949869985a504cb0edd65ec73a.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