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 2005/04/19 12:42:59 UTC

cvs commit: ws-axis/c build.xml

hawkeye     2005/04/19 03:42:59

  Modified:    c        build.xml
  Log:
  fixed call to "rc" on windows because using <arg line="..."> doesn't work if the
  path has a space in it
  
  Revision  Changes    Path
  1.23      +4 -1      ws-axis/c/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/build.xml,v
  retrieving revision 1.22
  retrieving revision 1.23
  diff -u -r1.22 -r1.23
  --- build.xml	18 Mar 2005 11:58:57 -0000	1.22
  +++ build.xml	19 Apr 2005 10:42:59 -0000	1.23
  @@ -77,7 +77,10 @@
               </fileset>   
   	    </copy>
           <exec executable="rc">
  -            <arg line="/fo ${basedir}/build/version.res ${basedir}/build/version.temp.rc"/>
  +<!--            <arg ="/fo '${basedir}/build/version.res' '${basedir}/build/version.temp.rc'"/>-->
  +			<arg value="/fo"/>
  +        	<arg value="${basedir}/build/version.res"/>
  +        	<arg value="${basedir}/build/version.temp.rc"/>
           </exec>
       </target>