summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDiego Elio Pettenò <flameeyes@gentoo.org>2006-03-08 19:51:40 +0000
committerDiego Elio Pettenò <flameeyes@gentoo.org>2006-03-08 19:51:40 +0000
commitce543a1c8e4d44028e9e70a2013e0b8ed6dd69a9 (patch)
tree86ab103cca36e663ce4844b5ab7f1d2c1adb523a /eclass/autotools.eclass
parent#121816: make the useragent field larger (diff)
downloadgentoo-2-ce543a1c8e4d44028e9e70a2013e0b8ed6dd69a9.tar.gz
gentoo-2-ce543a1c8e4d44028e9e70a2013e0b8ed6dd69a9.tar.bz2
gentoo-2-ce543a1c8e4d44028e9e70a2013e0b8ed6dd69a9.zip
Force using of autoconf 2.5 while doing the trace, as that works with 2.1 configure.in too.
Diffstat (limited to 'eclass/autotools.eclass')
-rw-r--r--eclass/autotools.eclass4
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/autotools.eclass b/eclass/autotools.eclass
index fc34b9a3cd79..ba6bdd8f42e8 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.30 2006/01/31 10:25:56 flameeyes Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/autotools.eclass,v 1.31 2006/03/08 19:51:40 flameeyes Exp $
#
# Author: Diego Pettenò <flameeyes@gentoo.org>
# Enhancements: Martin Schlemmer <azarah@gentoo.org>
@@ -180,7 +180,7 @@ autotools_run_tool() {
# Internal function to check for support
autotools_check_macro() {
[[ -f configure.ac || -f configure.in ]] && \
- autoconf --trace=$1 2>/dev/null
+ WANT_AUTOCONF="2.5" autoconf --trace=$1 2>/dev/null
return 0
}