diff options
author | Grant Gayed <grant_gayed@ca.ibm.com> | 2013-04-11 12:17:20 -0400 |
---|---|---|
committer | Grant Gayed <grant_gayed@ca.ibm.com> | 2013-04-11 12:17:20 -0400 |
commit | 289663b789c3f5e6763593d701770dc9c6735e45 (patch) | |
tree | 341adbc00520cdd616d92af396a8018eba2a7742 | |
parent | 0e8780fecdad08e13acf40e49af437762eff1854 (diff) | |
download | eclipse.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.xml | 10 |
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> |