summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2014-11-15 07:11:41 +0000
committerMike Frysinger <vapier@gentoo.org>2014-11-15 07:11:41 +0000
commit039583b8997c456cfd0c0930e18d2ec7551386b0 (patch)
treea81e0910c1ac95a3c97ac0e9ca6ea5f7f569961d /eclass/autotools.eclass
parentold (diff)
downloadgentoo-2-039583b8997c456cfd0c0930e18d2ec7551386b0.tar.gz
gentoo-2-039583b8997c456cfd0c0930e18d2ec7551386b0.tar.bz2
gentoo-2-039583b8997c456cfd0c0930e18d2ec7551386b0.zip
autotools_env_setup: fix die message to list all the versions we tried and not just the first one #514724 by Alon Bar-Lev
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 c6539759c116..50c6aa5c53bc 100644
--- a/eclass/autotools.eclass
+++ b/eclass/autotools.eclass
@@ -1,6 +1,6 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/autotools.eclass,v 1.167 2014/11/15 05:40:04 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/autotools.eclass,v 1.168 2014/11/15 07:11:41 vapier Exp $
# @ECLASS: autotools.eclass
# @MAINTAINER:
@@ -432,7 +432,7 @@ autotools_env_setup() {
ROOT=/ has_version "=sys-devel/automake-${pv}*" && export WANT_AUTOMAKE="${pv}"
done
[[ ${WANT_AUTOMAKE} == "latest" ]] && \
- die "Cannot find the latest automake! Tried ${_LATEST_AUTOMAKE}"
+ die "Cannot find the latest automake! Tried ${_LATEST_AUTOMAKE[*]}"
fi
[[ ${WANT_AUTOCONF} == "latest" ]] && export WANT_AUTOCONF=2.5
}