You are viewing a plain text version of this content. The canonical link for it is here.
Posted to axis-cvs@ws.apache.org by sa...@apache.org on 2006/09/06 08:18:12 UTC

svn commit: r440629 - /webservices/axis2/trunk/c/build_all.sh

Author: samisa
Date: Tue Sep  5 23:18:11 2006
New Revision: 440629

URL: http://svn.apache.org/viewvc?view=rev&rev=440629
Log:
Added set -e
Fix for AXIS2C-248

Modified:
    webservices/axis2/trunk/c/build_all.sh

Modified: webservices/axis2/trunk/c/build_all.sh
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/build_all.sh?view=diff&rev=440629&r1=440628&r2=440629
==============================================================================
--- webservices/axis2/trunk/c/build_all.sh (original)
+++ webservices/axis2/trunk/c/build_all.sh Tue Sep  5 23:18:11 2006
@@ -1,42 +1,21 @@
+set -e
 AXIS2C_HOME=`pwd`/deploy
 AXIS2C=`pwd`
 export AXIS2C_HOME AXIS2C
+export LD_LIBRARY_PATH=${AXIS2C_HOME}/lib
 
 cd util
-
 sh build.sh
-if [ "$?" -ne 0 ]
-then
-exit 1
-fi
 
 cd ../axiom
-
 sh build.sh
-if [ "$?" -ne 0 ]
-then
-exit 1
-fi
 
 cd ../xml_schema
-
 sh build.sh
-if [ "$?" -ne 0 ]
-then
-exit 1
-fi
 
 cd ../woden
 sh build.sh
-if [ "$?" -ne 0 ]
-then
-exit 1
-fi
 
 cd ../
 sh build.sh
-if [ "$?" -ne 0 ]
-then
-exit 1
-fi
 



---------------------------------------------------------------------
To unsubscribe, e-mail: axis-cvs-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-cvs-help@ws.apache.org