From cf9f38eb5605155d3a360decf116a17e371760ef Mon Sep 17 00:00:00 2001 From: George Bosilca Date: Thu, 1 Oct 2009 14:06:41 +0000 Subject: [PATCH] Instead of just complaining about a version mismatch, clearly lists the versions available locally. This commit was SVN r22044. --- autogen.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/autogen.sh b/autogen.sh index efed4335ea..3ad167a3bb 100755 --- a/autogen.sh +++ b/autogen.sh @@ -184,6 +184,7 @@ find_app() { local version="0.0.0" local min_version="99.99.99" local found=0 + local versions_found="" local tmpIFS=$IFS eval "min_version=\"\$ompi_${app_name}_version\"" @@ -206,6 +207,7 @@ find_app() { found=1 break fi + versions_found="${versions_found} ${version}" done IFS="$tmpIFS" @@ -213,6 +215,7 @@ find_app() { if test "$found" = "0" ; then cat <