aboutsummaryrefslogtreecommitdiffstats
path: root/web-start
diff options
context:
space:
mode:
authorDaniel Pocock <daniel@pocock.pro>2014-07-04 16:20:10 +0200
committerDaniel Pocock <daniel@pocock.pro>2014-08-13 13:51:27 +0200
commit027044dbd1f66342093760cac174470bd504eb44 (patch)
tree87556311c2ad4dad9df1134a3fa0bd6d288a634f /web-start
parent68c1945c715e829889ac094cdc1935a5170669e3 (diff)
downloadjitsi-027044dbd1f66342093760cac174470bd504eb44.zip
jitsi-027044dbd1f66342093760cac174470bd504eb44.tar.gz
jitsi-027044dbd1f66342093760cac174470bd504eb44.tar.bz2
Ensure directories are created before ant-ext compile
Diffstat (limited to 'web-start')
-rw-r--r--web-start/WebStartBuild.xml2
1 files changed, 1 insertions, 1 deletions
diff --git a/web-start/WebStartBuild.xml b/web-start/WebStartBuild.xml
index 5af2789..153e95a 100644
--- a/web-start/WebStartBuild.xml
+++ b/web-start/WebStartBuild.xml
@@ -17,7 +17,7 @@
<property name="unpack200.path" value="${java.jdk.dir}/bin/unpack200" />
<property name="jarsigner.path" value="${java.jdk.dir}/bin/jarsigner" />
- <target name="compile-ant-ext">
+ <target name="compile-ant-ext" depends="prepare">
<javac srcdir="${ant-ext-src.dir}" destdir="${ant-ext.dir}" includeantruntime="true" />
</target>