summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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>