Author: mmao
Date: Sun Mar 4 19:16:49 2007
New Revision: 514533
URL: http://svn.apache.org/viewvc?view=rev&rev=514533
Log:
Wrap the binding file path with quote for wsdl2java ant macro,
otherwise the task will fail when there is a space in the path.
Modified:
incubator/cxf/trunk/distribution/src/main/release/samples/common_build.xml
Modified:
incubator/cxf/trunk/distribution/src/main/release/samples/common_build.xml
URL:
http://svn.apache.org/viewvc/incubator/cxf/trunk/distribution/src/main/release/samples/common_build.xml?view=diff&rev=514533&r1=514532&r2=514533
==============================================================================
--- incubator/cxf/trunk/distribution/src/main/release/samples/common_build.xml
(original)
+++ incubator/cxf/trunk/distribution/src/main/release/samples/common_build.xml
Sun Mar 4 19:16:49 2007
@@ -188,7 +188,7 @@
</not>
</condition>
<property name="[EMAIL PROTECTED]" value=""/>
- <condition property="binding.arg" value="-b @{bindingfile}">
+ <condition property="binding.arg" value='-b "@{bindingfile}"'>
<not>
<equals arg1="@{bindingfile}" arg2=""/>
</not>