You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by ge...@apache.org on 2006/07/20 07:50:04 UTC

svn commit: r423787 - /incubator/harmony/enhanced/trunk/sandbox/geir/build.xml

Author: geirm
Date: Wed Jul 19 22:50:04 2006
New Revision: 423787

URL: http://svn.apache.org/viewvc?rev=423787&view=rev
Log:
remove the .exe for protability

Modified:
    incubator/harmony/enhanced/trunk/sandbox/geir/build.xml

Modified: incubator/harmony/enhanced/trunk/sandbox/geir/build.xml
URL: http://svn.apache.org/viewvc/incubator/harmony/enhanced/trunk/sandbox/geir/build.xml?rev=423787&r1=423786&r2=423787&view=diff
==============================================================================
--- incubator/harmony/enhanced/trunk/sandbox/geir/build.xml (original)
+++ incubator/harmony/enhanced/trunk/sandbox/geir/build.xml Wed Jul 19 22:50:04 2006
@@ -47,7 +47,7 @@
         <delete dir="working_classlib"/>
         <delete dir="working_vm"/>
 
-        <exec executable="svn.exe" dir="." failonerror="true">
+        <exec executable="svn" dir="." failonerror="true">
             <arg line="update" />
         </exec>
 
@@ -61,7 +61,7 @@
        Switches the working_vm directory to vm choice
        ================================================================================= -->
     <target name="switch_svn_vm">
-        <exec executable="svn.exe" dir="working_vm" failonerror="true">
+        <exec executable="svn" dir="working_vm" failonerror="true">
             <arg line="switch" />
             <arg line="${vm.svn.url}" />
         </exec>
@@ -71,7 +71,7 @@
        Switches the working_classlib directory to classlib choice
        ================================================================================= -->
     <target name="switch_svn_classlib">
-        <exec executable="svn.exe" dir="working_classlib" failonerror="true">
+        <exec executable="svn" dir="working_classlib" failonerror="true">
             <arg line="switch" />
             <arg line="${classlib.svn.url}" />
         </exec>