[jbossws-commits] JBossWS SVN: r3928 - in trunk: integration/spi and 3 other directories.

jbossws-commits at lists.jboss.org jbossws-commits at lists.jboss.org
Wed Jul 18 08:34:21 EDT 2007


Author: thomas.diesler at jboss.com
Date: 2007-07-18 08:34:20 -0400 (Wed, 18 Jul 2007)
New Revision: 3928

Modified:
   trunk/integration/native/build.sh
   trunk/integration/spi/build.sh
   trunk/integration/sunri/build.sh
   trunk/integration/xfire/build.sh
   trunk/jbossws-core/build.sh
Log:
Remove exec ant from build.sh

Modified: trunk/integration/native/build.sh
===================================================================
--- trunk/integration/native/build.sh	2007-07-18 12:13:42 UTC (rev 3927)
+++ trunk/integration/native/build.sh	2007-07-18 12:34:20 UTC (rev 3928)
@@ -172,12 +172,8 @@
     # export some stuff for ant
     export ANT ANT_HOME ANT_OPTS   
     
-    # execute in debug mode, or simply execute
-    if [ "x$ANT_DEBUG" != "x" ]; then
-	/bin/sh -x $ANT $ANT_OPTIONS "$@"
-    else
-	exec $ANT $ANT_OPTIONS "$@"
-    fi
+    # run ant
+	$ANT $ANT_OPTIONS "$@"
 }
 
 ##

Modified: trunk/integration/spi/build.sh
===================================================================
--- trunk/integration/spi/build.sh	2007-07-18 12:13:42 UTC (rev 3927)
+++ trunk/integration/spi/build.sh	2007-07-18 12:34:20 UTC (rev 3928)
@@ -172,12 +172,8 @@
     # export some stuff for ant
     export ANT ANT_HOME ANT_OPTS   
     
-    # execute in debug mode, or simply execute
-    if [ "x$ANT_DEBUG" != "x" ]; then
-	/bin/sh -x $ANT $ANT_OPTIONS "$@"
-    else
-	exec $ANT $ANT_OPTIONS "$@"
-    fi
+    # run ant
+	$ANT $ANT_OPTIONS "$@"
 }
 
 ##

Modified: trunk/integration/sunri/build.sh
===================================================================
--- trunk/integration/sunri/build.sh	2007-07-18 12:13:42 UTC (rev 3927)
+++ trunk/integration/sunri/build.sh	2007-07-18 12:34:20 UTC (rev 3928)
@@ -172,12 +172,8 @@
     # export some stuff for ant
     export ANT ANT_HOME ANT_OPTS   
     
-    # execute in debug mode, or simply execute
-    if [ "x$ANT_DEBUG" != "x" ]; then
-	/bin/sh -x $ANT $ANT_OPTIONS "$@"
-    else
-	exec $ANT $ANT_OPTIONS "$@"
-    fi
+    # run ant
+	$ANT $ANT_OPTIONS "$@"
 }
 
 ##

Modified: trunk/integration/xfire/build.sh
===================================================================
--- trunk/integration/xfire/build.sh	2007-07-18 12:13:42 UTC (rev 3927)
+++ trunk/integration/xfire/build.sh	2007-07-18 12:34:20 UTC (rev 3928)
@@ -172,12 +172,8 @@
     # export some stuff for ant
     export ANT ANT_HOME ANT_OPTS   
     
-    # execute in debug mode, or simply execute
-    if [ "x$ANT_DEBUG" != "x" ]; then
-	/bin/sh -x $ANT $ANT_OPTIONS "$@"
-    else
-	exec $ANT $ANT_OPTIONS "$@"
-    fi
+    # run ant
+	$ANT $ANT_OPTIONS "$@"
 }
 
 ##

Modified: trunk/jbossws-core/build.sh
===================================================================
--- trunk/jbossws-core/build.sh	2007-07-18 12:13:42 UTC (rev 3927)
+++ trunk/jbossws-core/build.sh	2007-07-18 12:34:20 UTC (rev 3928)
@@ -172,12 +172,8 @@
     # export some stuff for ant
     export ANT ANT_HOME ANT_OPTS   
     
-    # execute in debug mode, or simply execute
-    if [ "x$ANT_DEBUG" != "x" ]; then
-	/bin/sh -x $ANT $ANT_OPTIONS "$@"
-    else
-	exec $ANT $ANT_OPTIONS "$@"
-    fi
+    # run ant
+	$ANT $ANT_OPTIONS "$@"
 }
 
 ##




More information about the jbossws-commits mailing list