Author: jfrederic.clere(a)jboss.com
Date: 2009-02-20 05:15:33 -0500 (Fri, 20 Feb 2009)
New Revision: 2313
Modified:
trunk/build/unix/buildsrc.mod_cluster.sh
Log:
Stop the buid if buildconf failed...
Modified: trunk/build/unix/buildsrc.mod_cluster.sh
===================================================================
--- trunk/build/unix/buildsrc.mod_cluster.sh 2009-02-20 10:06:31 UTC (rev 2312)
+++ trunk/build/unix/buildsrc.mod_cluster.sh 2009-02-20 10:15:33 UTC (rev 2313)
@@ -120,11 +120,11 @@
if [ "${BUILD_SYS}" != "windows" ]; then
(cd ${dirsources}
- bash buildconf
- )
+ bash buildconf || exit 1
+ ) || exit 1
if $has_jk; then
(cd ${dirsources}/modules/jk
- autoconf
- )
+ autoconf || exit 1
+ ) || exit 1
fi
fi
Show replies by date