[xiph-cvs] r6542 - trunk/theora

giles at xiph.org giles at xiph.org
Sun Apr 18 22:47:45 PDT 2004



Author: giles
Date: 2004-04-19 01:47:45 -0400 (Mon, 19 Apr 2004)
New Revision: 6542

Modified:
   trunk/theora/autogen.sh
Log:
Restore error propagation blocks removed by the previous patch. Thanks 
to thomasvs for noticing this.

<p>Modified: trunk/theora/autogen.sh
===================================================================
--- trunk/theora/autogen.sh	2004-04-19 05:35:12 UTC (rev 6541)
+++ trunk/theora/autogen.sh	2004-04-19 05:47:45 UTC (rev 6542)
@@ -102,13 +102,13 @@
 echo "Generating configuration files for $package, please wait...."
 
 echo "  $ACLOCAL $ACLOCAL_FLAGS"
-$ACLOCAL $ACLOCAL_FLAGS
+$ACLOCAL $ACLOCAL_FLAGS || exit 1
 echo "  autoheader"
 autoheader || exit 1
 echo "  $LIBTOOLIZE --automake"
-$LIBTOOLIZE --automake
+$LIBTOOLIZE --automake || exit 1
 echo "  $AUTOMAKE --add-missing $AUTOMAKE_FLAGS"
-$AUTOMAKE --add-missing $AUTOMAKE_FLAGS 
+$AUTOMAKE --add-missing $AUTOMAKE_FLAGS || exit 1
 echo "  autoconf"
 autoconf || exit 1
 

--- >8 ----
List archives:  http://www.xiph.org/archives/
Ogg project homepage: http://www.xiph.org/ogg/
To unsubscribe from this list, send a message to 'cvs-request at xiph.org'
containing only the word 'unsubscribe' in the body.  No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.



More information about the commits mailing list