Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--releng/org.eclipse.equinox.launcher.releng/build.xml4
1 files changed, 3 insertions, 1 deletions
diff --git a/releng/org.eclipse.equinox.launcher.releng/build.xml b/releng/org.eclipse.equinox.launcher.releng/build.xml
index eca9efa1b..195506aad 100644
--- a/releng/org.eclipse.equinox.launcher.releng/build.xml
+++ b/releng/org.eclipse.equinox.launcher.releng/build.xml
@@ -377,11 +377,13 @@
<!--<antcall target="fetchExecutableSource" />-->
<property name="javaHome" value="${java.home}/.." />
<property name="libraryFolder" value="${basedir}/${os}.${ws}.${arch}/library" />
- <property file="${libraryFolder}/make_version.mak" />
+ <delete dir="${libraryFolder}" failonerror="false" />
<mkdir dir="${libraryFolder}" />
<unzip src="${basedir}/library.zip" dest="${libraryFolder}" />
+ <property file="${libraryFolder}/make_version.mak" />
+
<antcall target="buildNix" />
<antcall target="buildWindows" />
<antcall target="buildMac" />

Back to the top