From 476784323513b22534b698fd83459e0c44d3c99d Mon Sep 17 00:00:00 2001 From: Brian Barrett Date: Thu, 9 Feb 2006 15:23:04 +0000 Subject: [PATCH] * ROMIO requires AC 2.59, so bump up the top level AC requirements to match. * Abort the top-level autogen.sh if any of the sub-autogen.sh scripts fail, or one can end up with a really whacky build tree This does not require anyone re-running autogen or configure. You'll just get slightly more error checking goodness next time I do something that requires you to re-run autogen.sh ;). This commit was SVN r8947. --- autogen.sh | 31 +++++++++++++++++++------------ 1 file changed, 19 insertions(+), 12 deletions(-) diff --git a/autogen.sh b/autogen.sh index fb43f6dee4..3121140628 100755 --- a/autogen.sh +++ b/autogen.sh @@ -54,7 +54,7 @@ if test ! -z "$AUTOMAKE"; then fi ompi_automake_version="1.9" -ompi_autoconf_version="2.58" +ompi_autoconf_version="2.59" ompi_libtool_version="1.5.16" @@ -658,6 +658,10 @@ EOF EOF ./autogen.sh + if test ! $? -eq 0 ; then + echo "Error running autogen.sh -l in `pwd`. Aborting." + exit 1 + fi elif test -f configure.params -a -f configure.m4 ; then cat <