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 pi...@apache.org on 2006/05/26 09:15:28 UTC

svn commit: r409574 - in /webservices/axis2/trunk/c: axiom/build.sh build.sh build_all.sh samples/build.sh util/build.sh

Author: pini
Date: Fri May 26 00:15:27 2006
New Revision: 409574

URL: http://svn.apache.org/viewvc?rev=409574&view=rev
Log:
changed build scripts for time being


Modified:
    webservices/axis2/trunk/c/axiom/build.sh
    webservices/axis2/trunk/c/build.sh
    webservices/axis2/trunk/c/build_all.sh
    webservices/axis2/trunk/c/samples/build.sh
    webservices/axis2/trunk/c/util/build.sh

Modified: webservices/axis2/trunk/c/axiom/build.sh
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/axiom/build.sh?rev=409574&r1=409573&r2=409574&view=diff
==============================================================================
--- webservices/axis2/trunk/c/axiom/build.sh (original)
+++ webservices/axis2/trunk/c/axiom/build.sh Fri May 26 00:15:27 2006
@@ -1,23 +1,7 @@
 #!/bin/bash
 
 ./autogen.sh
-
-./configure --prefix=${AXIS2C_HOME} --enable-static=no --with-axis2_util=${AXIS2C_HOME}/include --enable-tests=yes 2> error.log
-if [ -s error.log ]
-then
-    echo "Error, see error.log for details"
-	exit 2
-fi
-
-make  2>error.log
-if grep -w 'Error' `find -name "error.log"`; then
-	echo "Error, see error.log for details"
-	exit 2
-fi
-
-make install 2>error.log
-if grep -w 'Error' `find -name "error.log"`; then
-	echo "Error, see error.log for details"
-	exit 2
-fi
+./configure --prefix=${AXIS2C_HOME} --enable-static=no --with-axis2_util=${AXIS2C_HOME}/include --enable-tests=yes
+make 
+make install
 

Modified: webservices/axis2/trunk/c/build.sh
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/build.sh?rev=409574&r1=409573&r2=409574&view=diff
==============================================================================
--- webservices/axis2/trunk/c/build.sh (original)
+++ webservices/axis2/trunk/c/build.sh Fri May 26 00:15:27 2006
@@ -4,47 +4,14 @@
 AXIS2C=`pwd`
 export AXIS2C_HOME AXIS2C
 
-./configure --prefix=${AXIS2C_HOME} --enable-tests=yes --enable-trace=yes  --with-apache2=/usr/include/apache2 --with-apr=/usr/include/apr-0 --enable-diclient=no --enable-static=no --enable-openssl=no --with-axis2_util=${AXIS2C}/util/include --with-axiom=${AXIS2C}/axiom/include 2> error.log
-
-if [ -s error.log ]
-then
-    echo "Error, see error.log for details"
-	exit 2
-fi
-
-make  2>error.log
-if grep -w 'Error' `find -name "error.log"`; then
-	echo "Error, see error.log for details"
-	exit 2
-fi
-
-make install 2>error.log
-if grep -w 'Error' `find -name "error.log"`; then
-	echo "Error, see error.log for details"
-	exit 2
-fi
+./configure --prefix=${AXIS2C_HOME} --enable-tests=yes --enable-trace=yes  --with-apache2=/usr/include/apache2 --with-apr=/usr/include/apr-0 --enable-diclient=no --enable-static=no --enable-openssl=no --with-axis2_util=${AXIS2C}/util/include --with-axiom=${AXIS2C}/axiom/include 
 
+make 
+make install
 cd samples
-
 ./autogen.sh
-
-./configure --prefix=${AXIS2C_HOME} --with-axis2_util=${AXIS2C_HOME}/include --with-axiom=${AXIS2C_HOME}/include 2> error.log
-if [ -s error.log ]
-then
-    echo "Error, see error.log for details"
-	exit 2
-fi
-
-make  2>error.log
-	if grep -w 'Error' `find -name "error.log"`; then
-	echo "Error, see error.log for details"
-	exit 2
-fi
-
-make install 2>error.log
-	if grep -w 'Error' `find -name "error.log"`; then
-	echo "Error, see error.log for details"
-	exit 2
-fi
+./configure --prefix=${AXIS2C_HOME} --with-axis2_util=${AXIS2C_HOME}/include --with-axiom=${AXIS2C_HOME}/include
+make 
+make install
 								
 cd ..

Modified: webservices/axis2/trunk/c/build_all.sh
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/build_all.sh?rev=409574&r1=409573&r2=409574&view=diff
==============================================================================
--- webservices/axis2/trunk/c/build_all.sh (original)
+++ webservices/axis2/trunk/c/build_all.sh Fri May 26 00:15:27 2006
@@ -1,36 +1,11 @@
 #!/bin/bash
 cd util
-
-sh build.sh  2>error.log
-    if grep -w 'Error' `find -name "error.log"`; then
-	echo "Error, see util/error.log for details"
-	exit 2
-fi
-
+sh build.sh  
 cd ..
-
 cd axiom
-
-sh build.sh  2>error.log
-    if grep -w 'Error' `find -name "error.log"`; then
-	echo "Error, see util/error.log for details"
-	exit 2
-fi
-
+sh build.sh 
 cd ..
-
-sh build.sh  2>error.log
-    if grep -w 'Error' `find -name "error.log"`; then
-	echo "Error, see util/error.log for details"
-	exit 2
-fi
-
+sh build.sh 
 cd samples
-
-sh build.sh  2>error.log
-    if grep -w 'Error' `find -name "error.log"`; then
-	echo "Error, see util/error.log for details"
-	exit 2
-fi
-
+sh build.sh 
 cd ..

Modified: webservices/axis2/trunk/c/samples/build.sh
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/samples/build.sh?rev=409574&r1=409573&r2=409574&view=diff
==============================================================================
--- webservices/axis2/trunk/c/samples/build.sh (original)
+++ webservices/axis2/trunk/c/samples/build.sh Fri May 26 00:15:27 2006
@@ -2,22 +2,7 @@
 
 ./autogen.sh
 
-./configure --prefix=${AXIS2C_HOME} --with-axis2_util=${AXIS2C_HOME}/include --with-axiom=${AXIS2C_HOME}/include 2> error.log
-if [ -s error.log ]
-then
-    echo "Error, see error.log for details"
-	exit 2
-fi
-
-make  2>error.log
-	if grep -w 'Error' `find -name "error.log"`; then
-	echo "Error, see error.log for details"
-	exit 2
-fi
-
-make install 2>error.log
-	if grep -w 'Error' `find -name "error.log"`; then
-	echo "Error, see error.log for details"
-	exit 2
-fi
+./configure --prefix=${AXIS2C_HOME} --with-axis2_util=${AXIS2C_HOME}/include --with-axiom=${AXIS2C_HOME}/include
+make 
+make install
 

Modified: webservices/axis2/trunk/c/util/build.sh
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/util/build.sh?rev=409574&r1=409573&r2=409574&view=diff
==============================================================================
--- webservices/axis2/trunk/c/util/build.sh (original)
+++ webservices/axis2/trunk/c/util/build.sh Fri May 26 00:15:27 2006
@@ -1,23 +1,6 @@
 #!/bin/bash
 
 ./autogen.sh
-
-./configure --prefix=${AXIS2C_HOME} --enable-static=no 2> error.log
-if [ -s error.log ]
-then
-	echo "Error, see error.log for details" 
-	exit 2
-fi
-
-make  2>error.log
-if grep -w 'Error' `find -name "error.log"`; then
-	echo "Error, see error.log for details"
-	exit 2
-fi
-
-
-make install 2>error.log
-if grep -w 'Error' `find -name "error.log"`; then
-	echo "Error, see error.log for details"
-	exit 2
-fi
+./configure --prefix=${AXIS2C_HOME} --enable-static=no
+make 
+make install



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