Skip to main content
aboutsummaryrefslogtreecommitdiffstats
path: root/releng
diff options
context:
space:
mode:
authorAndrew Niefer2011-09-01 18:43:22 +0000
committerAndrew Niefer2011-09-01 18:43:22 +0000
commitf8263e925826cab02650a0b84ec237ba6ec75f32 (patch)
treefaad5946455a3e365163f61c1715f5e494dce4e8 /releng
parent5b7faaf85cbc840177816194990383817191817d (diff)
downloadrt.equinox.framework-f8263e925826cab02650a0b84ec237ba6ec75f32.tar.gz
rt.equinox.framework-f8263e925826cab02650a0b84ec237ba6ec75f32.tar.xz
rt.equinox.framework-f8263e925826cab02650a0b84ec237ba6ec75f32.zip
Bug 350102 - clean library folder of old content
read make versions after unzipping source
Diffstat (limited to 'releng')
-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