summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJosh Suereth <joshua.suereth@gmail.com>2012-02-23 16:37:46 -0500
committerJosh Suereth <joshua.suereth@gmail.com>2012-02-23 16:37:46 -0500
commitcee16036bc372f0a6f5d2ff73d9c6651ae8ccfe7 (patch)
treeca7278c26b4700eb6b580e52897e0df2242b1bdd
parent622656dfc87100bc94a37f3b244955c96d526023 (diff)
downloadscala-cee16036bc372f0a6f5d2ff73d9c6651ae8ccfe7.tar.gz
scala-cee16036bc372f0a6f5d2ff73d9c6651ae8ccfe7.tar.bz2
scala-cee16036bc372f0a6f5d2ff73d9c6651ae8ccfe7.zip
Fix to nightly build.
You see shelling to other ant builds doesn't let us declare dependencies on the primary build, so to ensure all tasks are run when needed, and that we don't slow everyone down with javadocs, we wind up with a bit of spaghetti.
-rw-r--r--build.xml2
1 files changed, 1 insertions, 1 deletions
diff --git a/build.xml b/build.xml
index dfea339132..9bd5f8dac0 100644
--- a/build.xml
+++ b/build.xml
@@ -2053,7 +2053,7 @@ FORWARDED TARGETS FOR NIGHTLY BUILDS
</antcall>
</target>
- <target name="nightly-nopt" depends="all.done">
+ <target name="nightly-nopt" depends="all.done, docs.all">
<!-- 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>