Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorArun Thondapu2016-03-30 08:49:34 +0000
committerArun Thondapu2016-04-08 19:34:12 +0000
commit3417fec970e2a6caaf5da93070bd0772e94df9d7 (patch)
tree42c705380b463ceafa136b1db0f4a202d8c4c00d /features/org.eclipse.equinox.executable.feature/resources/build.xml
parenta657da2e25af145a8e3750ec11eea3179d0b242d (diff)
downloadrt.equinox.framework-3417fec970e2a6caaf5da93070bd0772e94df9d7.tar.gz
rt.equinox.framework-3417fec970e2a6caaf5da93070bd0772e94df9d7.tar.xz
rt.equinox.framework-3417fec970e2a6caaf5da93070bd0772e94df9d7.zip
Bug 429335 - Need 64-bit launcher for Solaris/X86_64Y20160414-1000I20160412-0800
Diffstat (limited to 'features/org.eclipse.equinox.executable.feature/resources/build.xml')
-rw-r--r--features/org.eclipse.equinox.executable.feature/resources/build.xml8
1 files changed, 8 insertions, 0 deletions
diff --git a/features/org.eclipse.equinox.executable.feature/resources/build.xml b/features/org.eclipse.equinox.executable.feature/resources/build.xml
index 10008a662..958f9230f 100644
--- a/features/org.eclipse.equinox.executable.feature/resources/build.xml
+++ b/features/org.eclipse.equinox.executable.feature/resources/build.xml
@@ -226,6 +226,13 @@
</copy>
<chmod perm="755" dir="${feature.base}/solaris.gtk.x86/${collectingFolder}" includes="launcher" />
</target>
+ <target name="rootFilessolaris_gtk_x86_64">
+ <mkdir dir="${feature.base}/solaris.gtk.x86_64/${collectingFolder}"/>
+ <copy todir="${feature.base}/solaris.gtk.x86_64/${collectingFolder}" failonerror="true" overwrite="true">
+ <fileset dir="${basedir}/bin/gtk/solaris/x86_64" includes="**" />
+ </copy>
+ <chmod perm="755" dir="${feature.base}/solaris.gtk.x86_64/${collectingFolder}" includes="launcher" />
+ </target>
<target name="rootFileshpux_gtk_ia64_32">
<mkdir dir="${feature.base}/hpux.gtk.ia64_32/${collectingFolder}"/>
<copy todir="${feature.base}/hpux.gtk.ia64_32/${collectingFolder}" failonerror="true" overwrite="true">
@@ -259,6 +266,7 @@
<antcall target="rootFileslinux_gtk_s390x"/>
<antcall target="rootFilessolaris_gtk_sparc"/>
<antcall target="rootFilessolaris_gtk_x86"/>
+ <antcall target="rootFilessolaris_gtk_x86_64"/>
<antcall target="rootFilesaix_gtk_ppc64"/>
<antcall target="rootFilesaix_gtk_ppc"/>
<antcall target="rootFileshpux_gtk_ia64_32"/>

Back to the top