summaryrefslogtreecommitdiff
path: root/build.xml
diff options
context:
space:
mode:
authormichelou <michelou@epfl.ch>2006-07-14 17:00:28 +0000
committermichelou <michelou@epfl.ch>2006-07-14 17:00:28 +0000
commit5c25a0511871c1e9da4188d67446f360c65b896c (patch)
tree01f69cfd5df4bf29599a5f28f899ba2a68ed1799 /build.xml
parentf964ab66d62b7cee249d89989831f7cd74c76f0a (diff)
downloadscala-5c25a0511871c1e9da4188d67446f360c65b896c.tar.gz
scala-5c25a0511871c1e9da4188d67446f360c65b896c.tar.bz2
scala-5c25a0511871c1e9da4188d67446f360c65b896c.zip
EXTENSION_CLASSPATH now contains both files/dir...
EXTENSION_CLASSPATH now contains both files/dirs on Windows
Diffstat (limited to 'build.xml')
-rw-r--r--build.xml6
1 files changed, 3 insertions, 3 deletions
diff --git a/build.xml b/build.xml
index 77bf1a1164..286576a0bc 100644
--- a/build.xml
+++ b/build.xml
@@ -245,12 +245,12 @@ BUILD SUPPORT MACROS
<attribute name="build.dir"/>
<sequential>
<if><not><available file="@{build.dir}/lib/fjbg.jar"/></not><then>
- <if><isset property="os.unix"/><then>
+ <if><isset property="os.win"/><then>
+ <copy file="${fjbg.jar}" tofile="@{build.dir}/lib/fjbg.jar"/>
+ </then><else>
<symlink
link="@{build.dir}/lib/fjbg.jar"
resource="${fjbg.jar}" overwrite="yes" failonerror="no"/>
- </then><else>
- <copy file="${fjbg.jar}" tofile="@{build.dir}/lib/fjbg.jar"/>
</else></if>
</then></if>
</sequential>