You are viewing a plain text version of this content. The canonical link for it is here.
Posted to derby-commits@db.apache.org by fu...@apache.org on 2005/05/18 19:32:42 UTC

svn commit: r170782 - /incubator/derby/code/branches/10.0/java/engine/org/apache/derby/loc/build.xml

Author: fuzzylogic
Date: Wed May 18 10:32:42 2005
New Revision: 170782

URL: http://svn.apache.org/viewcvs?rev=170782&view=rev
Log:
DERBY-249: Before this fix, build would break if the source path contained
spaces, at the splitmessages step.

Committed for Dyre Tjeldvoll <Dy...@Sun.COM>

Modified:
    incubator/derby/code/branches/10.0/java/engine/org/apache/derby/loc/build.xml

Modified: incubator/derby/code/branches/10.0/java/engine/org/apache/derby/loc/build.xml
URL: http://svn.apache.org/viewcvs/incubator/derby/code/branches/10.0/java/engine/org/apache/derby/loc/build.xml?rev=170782&r1=170781&r2=170782&view=diff
==============================================================================
--- incubator/derby/code/branches/10.0/java/engine/org/apache/derby/loc/build.xml (original)
+++ incubator/derby/code/branches/10.0/java/engine/org/apache/derby/loc/build.xml Wed May 18 10:32:42 2005
@@ -70,7 +70,8 @@
           dir="${derby.locales.dir}"
           fork="yes"
           failonerror="true">
-      <arg line="${loc.dir} ${split.properties}"/>
+      <arg value="${loc.dir}"/> 
+      <arg value="${split.properties}"/>
     </java>
     <touch file="${split.donefile}"/>
   </target>