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 ha...@apache.org on 2006/03/22 10:30:11 UTC

svn commit: r387809 - /webservices/axis/trunk/c/build/buildTools.xml

Author: hawkeye
Date: Wed Mar 22 01:30:09 2006
New Revision: 387809

URL: http://svn.apache.org/viewcvs?rev=387809&view=rev
Log:
Fixed bug where C headers were generated even when the buildCBindings flag was not there

Modified:
    webservices/axis/trunk/c/build/buildTools.xml

Modified: webservices/axis/trunk/c/build/buildTools.xml
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/c/build/buildTools.xml?rev=387809&r1=387808&r2=387809&view=diff
==============================================================================
--- webservices/axis/trunk/c/build/buildTools.xml (original)
+++ webservices/axis/trunk/c/build/buildTools.xml Wed Mar 22 01:30:09 2006
@@ -52,7 +52,7 @@
 	<target name="buildCBindings" depends="generateCHeaders, compileCBindings" if="buildCBindings"
 	  description="Generate the C bindings and compile and link the C bindings client library"/>
 
-	<target name="generateCHeaders" depends="buildTools"
+	<target name="generateCHeaders" depends="buildTools"  if="buildCBindings"
 	  description="Run the C binding generator tool">
 		<!--  make sure we've got a clean output directory structure -->
 		<delete dir="${dir.obj}/include"/>