summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGrant Gayed <grant_gayed@ca.ibm.com>2013-04-11 12:17:20 -0400
committerGrant Gayed <grant_gayed@ca.ibm.com>2013-04-11 12:17:20 -0400
commit289663b789c3f5e6763593d701770dc9c6735e45 (patch)
tree341adbc00520cdd616d92af396a8018eba2a7742
parent0e8780fecdad08e13acf40e49af437762eff1854 (diff)
downloadeclipse.platform.swt-289663b789c3f5e6763593d701770dc9c6735e45.tar.gz
eclipse.platform.swt-289663b789c3f5e6763593d701770dc9c6735e45.tar.xz
eclipse.platform.swt-289663b789c3f5e6763593d701770dc9c6735e45.zip
fix build script for 64-bit XULRunner on win32
-rw-r--r--bundles/org.eclipse.swt/buildSWT.xml10
1 files changed, 10 insertions, 0 deletions
diff --git a/bundles/org.eclipse.swt/buildSWT.xml b/bundles/org.eclipse.swt/buildSWT.xml
index 4aa044c049..b5c445126f 100644
--- a/bundles/org.eclipse.swt/buildSWT.xml
+++ b/bundles/org.eclipse.swt/buildSWT.xml
@@ -1031,6 +1031,16 @@
<arg line="${targets}"/>
<arg line="${clean}"/>
</exec>
+ <condition property="should_build_xulrunner" value="true">
+ <or>
+ <equals arg1="${swt.arch}" arg2="x86"/>
+ <equals arg1="${swt.arch}" arg2="x86_64"/>
+ </or>
+ </condition>
+ <antcall target="build_local_win_xulrunner"/>
+ </target>
+
+ <target name="build_local_win_xulrunner" if="should_build_xulrunner">
<condition property="xulrunner_target" value="make_xulrunner64" else="make_xulrunner">
<equals arg1="${swt.arch}" arg2="x86_64"/>
</condition>