Enlightenment CVS committal Author : vapier Project : e17 Module : apps/e
Dir : e17/apps/e Modified Files: autogen.sh Log Message: add error checking =================================================================== RCS file: /cvsroot/enlightenment/e17/apps/e/autogen.sh,v retrieving revision 1.14 retrieving revision 1.15 diff -u -3 -r1.14 -r1.15 --- autogen.sh 12 Jul 2005 03:53:41 -0000 1.14 +++ autogen.sh 8 Aug 2005 21:46:02 -0000 1.15 @@ -1,14 +1,16 @@ #!/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 \ -&& echo "Generating gettext enlightenment.pot template"; \ +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 +echo "Generating gettext enlightenment.pot template"; \ xgettext \ -n \ -C \ @@ -20,7 +22,7 @@ -k -k_ -kd_ \ --from-code=UTF-8 \ -o enlightenment.pot \ -`find . -name "*.[ch]" -print` +`find . -name "*.[ch]" -print` || exit 1 if [ -z "$NOCONFIGURE" ]; then ./configure "$@" ------------------------------------------------------- SF.Net email is Sponsored by the Better Software Conference & EXPO September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf _______________________________________________ enlightenment-cvs mailing list enlightenment-cvs@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs