summaryrefslogtreecommitdiff
path: root/build.xml
diff options
context:
space:
mode:
authorLukas Rytz <lukas.rytz@epfl.ch>2009-09-22 10:35:12 +0000
committerLukas Rytz <lukas.rytz@epfl.ch>2009-09-22 10:35:12 +0000
commit6f18d00708160c9363ed130ca96b4b2d18f7ac90 (patch)
tree55ea02f48b064b28262fd30f5c652e9228010387 /build.xml
parentefc9abd507efc4a1847459a3523dbd95d1e0acb3 (diff)
downloadscala-6f18d00708160c9363ed130ca96b4b2d18f7ac90.tar.gz
scala-6f18d00708160c9363ed130ca96b4b2d18f7ac90.tar.bz2
scala-6f18d00708160c9363ed130ca96b4b2d18f7ac90.zip
fix for a nightly build problem
Diffstat (limited to 'build.xml')
-rw-r--r--build.xml6
1 files changed, 5 insertions, 1 deletions
diff --git a/build.xml b/build.xml
index c7a6881707..a71f5282f5 100644
--- a/build.xml
+++ b/build.xml
@@ -1560,7 +1560,11 @@ FORWARDED TARGETS FOR NIGHTLY BUILDS
<target name="nightly">
<!-- disabled until problems are fixed <property name="scalac.args.optimise" value="-optimise"/> -->
- <antcall target="all.done"/>
+ <antcall target="nightly-nopt"/>
+ </target>
+
+ <target name="nightly-nopt" depends="all.done">
+ <!-- cannot antcall all.done, the properties defined in there (dist.dir) are not returned. need depends. -->
<ant antfile="${src.dir}/build/pack.xml" target="pack-all.done" inheritall="yes" inheritrefs="yes"/>
</target>