add error checking to all autogen scripts
authorvapier <vapier>
Wed, 3 Aug 2005 01:00:21 +0000 (01:00 +0000)
committervapier <vapier@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Wed, 3 Aug 2005 01:00:21 +0000 (01:00 +0000)
git-svn-id: http://svn.enlightenment.org/svn/e/trunk/e17/libs/emotion@16014 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

autogen.sh

index 72e4772..995ff2f 100755 (executable)
@@ -1,13 +1,15 @@
 #!/bin/sh
 
 rm -rf autom4te.cache
-rm -f aclocal.m4
+rm -f aclocal.m4 ltmain.sh
 
-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
+touch README
+
+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 "$@"