You are viewing a plain text version of this content. The canonical link for it is here.
Posted to yoko-commits@incubator.apache.org by dm...@apache.org on 2006/06/23 13:38:15 UTC

svn commit: r416717 - /incubator/yoko/trunk/distribution/src/main/samples/ws/hello_world/build.xml

Author: dmiddlem
Date: Fri Jun 23 06:38:14 2006
New Revision: 416717

URL: http://svn.apache.org/viewvc?rev=416717&view=rev
Log:
Adding fix for failing WSDLToIDL on Linux

Modified:
    incubator/yoko/trunk/distribution/src/main/samples/ws/hello_world/build.xml

Modified: incubator/yoko/trunk/distribution/src/main/samples/ws/hello_world/build.xml
URL: http://svn.apache.org/viewvc/incubator/yoko/trunk/distribution/src/main/samples/ws/hello_world/build.xml?rev=416717&r1=416716&r2=416717&view=diff
==============================================================================
--- incubator/yoko/trunk/distribution/src/main/samples/ws/hello_world/build.xml (original)
+++ incubator/yoko/trunk/distribution/src/main/samples/ws/hello_world/build.xml Fri Jun 23 06:38:14 2006
@@ -77,11 +77,7 @@
                 <classpath>
                     <path refid="yoko.classpath" />
                 </classpath>
-                <arg value="@{extraArgs}"/>
-                <arg value="-d"/>
-                <arg value="${basedir}"/>
-                <arg value="-corba"/>
-                <arg value="@{file}"/>
+                <arg line="@{extraArgs} -d ${basedir} -corba @{file}"/>
             </java>
         </sequential>
     </macrodef>
@@ -101,13 +97,8 @@
                 <classpath>
                     <path refid="yoko.classpath" />
                 </classpath>
-                <arg line="-p"/>
-                <arg line="@{package}"/>
-                <arg value="@{extraArgs}"/>
-                <arg value="-d"/>
-                <arg value="@{srcdestdir}"/>
-                <arg value="@{file}"/>
+                <arg line="-p @{package} @{extraArgs} -d @{srcdestdir} @{file}"/>
             </java>
         </sequential>
     </macrodef>
-</project>
\ No newline at end of file
+</project>