From 89b041a14c353efa96ec45814ca9d70826001bed Mon Sep 17 00:00:00 2001 From: scjody Date: Thu, 23 Aug 2007 19:56:22 +0000 Subject: [PATCH] Branch b1_6 Exit autogen when a subcommand fails. b=10245 i=mjmac i=brian --- build/autogen.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/build/autogen.sh b/build/autogen.sh index eb02edd..a47d390 100644 --- a/build/autogen.sh +++ b/build/autogen.sh @@ -109,20 +109,20 @@ check_version automake automake-1.7 "1.7.8" check_version autoconf autoconf "2.57" echo "Running aclocal-1.7 $ACLOCAL_FLAGS..." -aclocal-1.7 $ACLOCAL_FLAGS +aclocal-1.7 $ACLOCAL_FLAGS || exit 1 echo "Running autoheader..." -autoheader +autoheader || exit 1 echo "Running automake-1.7..." -automake-1.7 -a -c +automake-1.7 -a -c || exit 1 echo "Running autoconf..." -autoconf +autoconf || exit 1 # Run autogen.sh in these directories for dir in $CONFIGURE_DIRS; do if [ -d $dir ] ; then pushd $dir >/dev/null echo "Running autogen for $dir..." - sh autogen.sh + sh autogen.sh || exit $? popd >/dev/null fi done -- 1.8.3.1