summaryrefslogtreecommitdiffstats
path: root/build.xml
diff options
context:
space:
mode:
authorYegor Kozlov <yegor@apache.org>2012-10-26 11:50:20 +0000
committerYegor Kozlov <yegor@apache.org>2012-10-26 11:50:20 +0000
commit59b4c3e08dd36618345b6906d17437e3e3842f60 (patch)
tree5b6c05c65bec546008f5e18018bff2d4c2295c68 /build.xml
parentb1f9000485380c952ae7794316b3c10bab102a76 (diff)
downloadpoi-59b4c3e08dd36618345b6906d17437e3e3842f60.tar.gz
poi-59b4c3e08dd36618345b6906d17437e3e3842f60.zip
Bug 54008: Fixed Ant build to support build directories with blanks
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1402473 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'build.xml')
-rw-r--r--build.xml7
1 files changed, 6 insertions, 1 deletions
diff --git a/build.xml b/build.xml
index b90e1615c5..6ffae12a7c 100644
--- a/build.xml
+++ b/build.xml
@@ -735,7 +735,12 @@ under the License.
<classpath refid="test.ooxml.classpath"/>
<syspropertyset refid="junit.properties"/>
<jvmarg value="${poi.test.locale}"/>
- <arg line="-ooxml ${ooxml.xsds.jar} -test ${ooxml.output.test.dir} -dest ${ooxml.lite.output.dir}"/>
+ <arg value="-ooxml"/>
+ <arg value="${ooxml.xsds.jar}"/>
+ <arg value="-test"/>
+ <arg value="${ooxml.output.test.dir}"/>
+ <arg value="-dest"/>
+ <arg value="${ooxml.lite.output.dir}"/>
</java>
</target>