From 90b551890f315cbf79759033cdb8c94f235f1f95 Mon Sep 17 00:00:00 2001 From: Richard Boulton Date: Tue, 22 May 2001 13:48:48 +0000 Subject: [PATCH] autogen.sh now fails if aclocal fails. Original commit message from CVS: autogen.sh now fails if aclocal fails. --- autogen.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/autogen.sh b/autogen.sh index 5926f6e..b8170ef 100755 --- a/autogen.sh +++ b/autogen.sh @@ -54,7 +54,10 @@ if test -z "$*"; then fi libtoolize --copy --force -aclocal $ACLOCAL_FLAGS +aclocal $ACLOCAL_FLAGS || { + echo "aclocal failed - check that all needed development files are present on system" + exit 1 +} autoheader autoconf automake --add-missing -- 2.7.4