add error checking to all autogen scripts

SVN revision: 16014
This commit is contained in:
Mike Frysinger 2005-08-03 01:00:21 +00:00
parent 6d9a430650
commit 9d417ba0f9
1 changed files with 6 additions and 6 deletions

View File

@ -1,15 +1,15 @@
#!/bin/sh
rm -rf autom4te.cache
rm -f aclocal.m4
rm -f aclocal.m4 ltmain.sh
touch README
echo "Running aclocal..."; aclocal $ACLOCAL_FLAGS -I m4 \
&& echo "Running autoheader..."; autoheader \
&& echo "Running autoconf..."; autoconf \
&& echo "Running libtoolize..."; (libtoolize --automake || glibtoolize --automake) \
&& echo "Running automake..."; automake --add-missing --copy --gnu
echo "Running aclocal..." ; aclocal $ACLOCAL_FLAGS -I m4 || exit 1
echo "Running autoheader..." ; autoheader || exit 1
echo "Running autoconf..." ; autoconf || exit 1
echo "Running libtoolize..." ; (libtoolize --copy --automake || glibtoolize --automake) || exit 1
echo "Running automake..." ; automake --add-missing --copy --gnu || exit 1
if [ -z "$NOCONFIGURE" ]; then
./configure "$@"