autogen.sh now fails if aclocal fails.

Original commit message from CVS:
autogen.sh now fails if aclocal fails.
This commit is contained in:
Richard Boulton 2001-05-22 13:48:48 +00:00
parent 5b028b13b5
commit 90b551890f

View file

@ -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