From 95897bf9dd247d31849ef15f441eff694a02cdf7 Mon Sep 17 00:00:00 2001 From: Thomas Vander Stichele Date: Fri, 14 Dec 2001 11:30:50 +0000 Subject: [PATCH] We should fix build errors as they happen and not find out about them when it is too late Original commit message from CVS: We should fix build errors as they happen and not find out about them when it is too late --- autogen.sh | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/autogen.sh b/autogen.sh index 0ba32c9..a5aecfd 100755 --- a/autogen.sh +++ b/autogen.sh @@ -112,16 +112,17 @@ if test -z "$*"; then echo "to pass any to it, please specify them on the $0 command line." fi -# FIXME : why does libtoolize keep complaining about aclocal ? -echo "+ running libtoolize ..." -libtoolize --copy --force - echo "+ running aclocal ..." aclocal $ACLOCAL_FLAGS || { echo echo "aclocal failed - check that all needed development files are present on system" exit 1 } + +# FIXME : why does libtoolize keep complaining about aclocal ? +echo "+ running libtoolize ..." +libtoolize --copy --force + echo "+ running autoheader ... " autoheader || { echo @@ -132,13 +133,13 @@ echo "+ running autoconf ... " autoconf || { echo echo "autoconf failed" - #exit 1 + exit 1 } echo "+ running automake ... " automake -a -c || { echo echo "automake failed" - #exit 1 + exit 1 } # now remove the cache, because it can be considered dangerous in this case -- 2.7.4