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 18:27:44 UTC

svn commit: r387896 - /webservices/axis/trunk/c/package.xml

Author: hawkeye
Date: Wed Mar 22 09:27:40 2006
New Revision: 387896

URL: http://svn.apache.org/viewcvs?rev=387896&view=rev
Log:
Fixed package step so doesn't fail if C bindings aren't there.

Modified:
    webservices/axis/trunk/c/package.xml

Modified: webservices/axis/trunk/c/package.xml
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/c/package.xml?rev=387896&r1=387895&r2=387896&view=diff
==============================================================================
--- webservices/axis/trunk/c/package.xml (original)
+++ webservices/axis/trunk/c/package.xml Wed Mar 22 09:27:40 2006
@@ -72,7 +72,9 @@
 		<copy todir="${dir.release}/include">
 			<fileset dir="${basedir}/include" includes="**"/>
 		</copy>
-		<copy todir="${dir.release}/include">
+		<!-- copy over the c include files which have been generated. the failonerror is the easiest way to do this
+		otherwise I have to load in common.properties and that could end in tears ! -->
+		<copy todir="${dir.release}/include" failonerror="false">
 			<fileset dir="${dir.obj}/include" includes="**"/>
 		</copy>
 	</target>