You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by pi...@apache.org on 2006/06/06 16:39:25 UTC

svn commit: r412133 - in /webservices/axis2/trunk/c: rampart/autogen.sh samples/autogen.sh util/autogen.sh woden/autogen.sh xml_schema/autogen.sh

Author: pini
Date: Tue Jun  6 07:39:24 2006
New Revision: 412133

URL: http://svn.apache.org/viewvc?rev=412133&view=rev
Log:
added --force option to libtoolize and cleaned autogen.sh script.


Modified:
    webservices/axis2/trunk/c/rampart/autogen.sh
    webservices/axis2/trunk/c/samples/autogen.sh
    webservices/axis2/trunk/c/util/autogen.sh
    webservices/axis2/trunk/c/woden/autogen.sh
    webservices/axis2/trunk/c/xml_schema/autogen.sh

Modified: webservices/axis2/trunk/c/rampart/autogen.sh
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/rampart/autogen.sh?rev=412133&r1=412132&r2=412133&view=diff
==============================================================================
--- webservices/axis2/trunk/c/rampart/autogen.sh (original)
+++ webservices/axis2/trunk/c/rampart/autogen.sh Tue Jun  6 07:39:24 2006
@@ -1,14 +1,43 @@
 #!/bin/bash
-  
-for i in libtoolize aclocal autoconf autoheader
-do
-    echo -n "Running $i..."
-    $i || exit 1
-    echo 'done.'
-done
-  
+
+echo -n 'Running libtoolize...'
+if libtoolize --force > /dev/null 2>&1; then
+	echo 'done.'
+else
+	echo 'failed.'
+	exit 1
+fi
+
+echo -n 'Running aclocal...'
+if aclocal > /dev/null 2>&1; then
+	echo 'done.'
+else
+	echo 'failed.'
+	exit 1
+fi
+
+echo -n 'Running autoheader...'
+if autoheader > /dev/null 2>&1; then
+	echo 'done.'
+else
+	echo 'failed.'
+	exit 1
+fi
+
+echo -n 'Running autoconf...'
+if autoconf > /dev/null 2>&1; then
+	echo 'done.'
+else
+	echo 'failed.'
+	exit 1
+fi
+
 echo -n 'Running automake...'
-automake --add-missing
-echo 'done.'
-exit 0
+if automake --add-missing > /dev/null 2>&1; then
+	echo 'done.'
+else
+	echo 'failed.'
+	exit 1
+fi
 
+echo 'done'

Modified: webservices/axis2/trunk/c/samples/autogen.sh
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/samples/autogen.sh?rev=412133&r1=412132&r2=412133&view=diff
==============================================================================
--- webservices/axis2/trunk/c/samples/autogen.sh (original)
+++ webservices/axis2/trunk/c/samples/autogen.sh Tue Jun  6 07:39:24 2006
@@ -1,14 +1,43 @@
 #!/bin/bash
-  
-for i in libtoolize aclocal autoconf autoheader
-do
-    echo -n "Running $i..."
-    $i || exit 1
-    echo 'done.'
-done
-  
+
+echo -n 'Running libtoolize...'
+if libtoolize --force > /dev/null 2>&1; then
+	echo 'done.'
+else
+	echo 'failed.'
+	exit 1
+fi
+
+echo -n 'Running aclocal...'
+if aclocal > /dev/null 2>&1; then
+	echo 'done.'
+else
+	echo 'failed.'
+	exit 1
+fi
+
+echo -n 'Running autoheader...'
+if autoheader > /dev/null 2>&1; then
+	echo 'done.'
+else
+	echo 'failed.'
+	exit 1
+fi
+
+echo -n 'Running autoconf...'
+if autoconf > /dev/null 2>&1; then
+	echo 'done.'
+else
+	echo 'failed.'
+	exit 1
+fi
+
 echo -n 'Running automake...'
-automake --add-missing
-echo 'done.'
-exit 0
+if automake --add-missing > /dev/null 2>&1; then
+	echo 'done.'
+else
+	echo 'failed.'
+	exit 1
+fi
 
+echo 'done'

Modified: webservices/axis2/trunk/c/util/autogen.sh
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/util/autogen.sh?rev=412133&r1=412132&r2=412133&view=diff
==============================================================================
--- webservices/axis2/trunk/c/util/autogen.sh (original)
+++ webservices/axis2/trunk/c/util/autogen.sh Tue Jun  6 07:39:24 2006
@@ -1,14 +1,43 @@
 #!/bin/bash
-  
-for i in libtoolize aclocal autoconf autoheader
-do
-    echo -n "Running $i..."
-    $i || exit 1
-    echo 'done.'
-done
-  
+
+echo -n 'Running libtoolize...'
+if libtoolize --force > /dev/null 2>&1; then
+	echo 'done.'
+else
+	echo 'failed.'
+	exit 1
+fi
+
+echo -n 'Running aclocal...'
+if aclocal > /dev/null 2>&1; then
+	echo 'done.'
+else
+	echo 'failed.'
+	exit 1
+fi
+
+echo -n 'Running autoheader...'
+if autoheader > /dev/null 2>&1; then
+	echo 'done.'
+else
+	echo 'failed.'
+	exit 1
+fi
+
+echo -n 'Running autoconf...'
+if autoconf > /dev/null 2>&1; then
+	echo 'done.'
+else
+	echo 'failed.'
+	exit 1
+fi
+
 echo -n 'Running automake...'
-automake --add-missing
-echo 'done.'
-exit 0
+if automake --add-missing > /dev/null 2>&1; then
+	echo 'done.'
+else
+	echo 'failed.'
+	exit 1
+fi
 
+echo 'done'

Modified: webservices/axis2/trunk/c/woden/autogen.sh
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/woden/autogen.sh?rev=412133&r1=412132&r2=412133&view=diff
==============================================================================
--- webservices/axis2/trunk/c/woden/autogen.sh (original)
+++ webservices/axis2/trunk/c/woden/autogen.sh Tue Jun  6 07:39:24 2006
@@ -1,14 +1,43 @@
 #!/bin/bash
-  
-for i in libtoolize aclocal autoconf autoheader
-do
-    echo -n "Running $i..."
-    $i || exit 1
-    echo 'done.'
-done
-  
+
+echo -n 'Running libtoolize...'
+if libtoolize --force > /dev/null 2>&1; then
+	echo 'done.'
+else
+	echo 'failed.'
+	exit 1
+fi
+
+echo -n 'Running aclocal...'
+if aclocal > /dev/null 2>&1; then
+	echo 'done.'
+else
+	echo 'failed.'
+	exit 1
+fi
+
+echo -n 'Running autoheader...'
+if autoheader > /dev/null 2>&1; then
+	echo 'done.'
+else
+	echo 'failed.'
+	exit 1
+fi
+
+echo -n 'Running autoconf...'
+if autoconf > /dev/null 2>&1; then
+	echo 'done.'
+else
+	echo 'failed.'
+	exit 1
+fi
+
 echo -n 'Running automake...'
-automake --add-missing
-echo 'done.'
-exit 0
+if automake --add-missing > /dev/null 2>&1; then
+	echo 'done.'
+else
+	echo 'failed.'
+	exit 1
+fi
 
+echo 'done'

Modified: webservices/axis2/trunk/c/xml_schema/autogen.sh
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/xml_schema/autogen.sh?rev=412133&r1=412132&r2=412133&view=diff
==============================================================================
--- webservices/axis2/trunk/c/xml_schema/autogen.sh (original)
+++ webservices/axis2/trunk/c/xml_schema/autogen.sh Tue Jun  6 07:39:24 2006
@@ -1,14 +1,43 @@
 #!/bin/bash
-  
-for i in libtoolize aclocal autoconf autoheader
-do
-    echo -n "Running $i..."
-    $i || exit 1
-    echo 'done.'
-done
-  
+
+echo -n 'Running libtoolize...'
+if libtoolize --force > /dev/null 2>&1; then
+	echo 'done.'
+else
+	echo 'failed.'
+	exit 1
+fi
+
+echo -n 'Running aclocal...'
+if aclocal > /dev/null 2>&1; then
+	echo 'done.'
+else
+	echo 'failed.'
+	exit 1
+fi
+
+echo -n 'Running autoheader...'
+if autoheader > /dev/null 2>&1; then
+	echo 'done.'
+else
+	echo 'failed.'
+	exit 1
+fi
+
+echo -n 'Running autoconf...'
+if autoconf > /dev/null 2>&1; then
+	echo 'done.'
+else
+	echo 'failed.'
+	exit 1
+fi
+
 echo -n 'Running automake...'
-automake --add-missing
-echo 'done.'
-exit 0
+if automake --add-missing > /dev/null 2>&1; then
+	echo 'done.'
+else
+	echo 'failed.'
+	exit 1
+fi
 
+echo 'done'



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