Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Watson2016-05-16 20:13:18 +0000
committerThomas Watson2016-05-16 20:39:40 +0000
commit78694f1377cf04f105f59eae7476729dcf3d49a3 (patch)
treeb13d021a5ede59db6a29777c2cb2b2832f09dded
parentddc1d34dfb9d45074257a5f147900781ff7ab8da (diff)
downloadrt.equinox.framework-78694f1377cf04f105f59eae7476729dcf3d49a3.tar.gz
rt.equinox.framework-78694f1377cf04f105f59eae7476729dcf3d49a3.tar.xz
rt.equinox.framework-78694f1377cf04f105f59eae7476729dcf3d49a3.zip
Bug 440886 - Launcher for HPUX is not generated
Change-Id: Ieecf5c1683ee21b22c11d4d04fec6c5ae0c00bf9 Signed-off-by: Thomas Watson <tjwatson@us.ibm.com>
-rw-r--r--features/org.eclipse.equinox.executable.feature/resources/build.xml12
1 files changed, 6 insertions, 6 deletions
diff --git a/features/org.eclipse.equinox.executable.feature/resources/build.xml b/features/org.eclipse.equinox.executable.feature/resources/build.xml
index e64594ada..a613745d9 100644
--- a/features/org.eclipse.equinox.executable.feature/resources/build.xml
+++ b/features/org.eclipse.equinox.executable.feature/resources/build.xml
@@ -220,12 +220,12 @@
</copy>
<chmod perm="755" dir="${feature.base}/solaris.gtk.x86/${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">
- <fileset dir="${basedir}/bin/gtk/hpux/ia64_32" includes="**" />
+ <target name="rootFileshpux_gtk_ia64">
+ <mkdir dir="${feature.base}/hpux.gtk.ia64/${collectingFolder}"/>
+ <copy todir="${feature.base}/hpux.gtk.ia64/${collectingFolder}" failonerror="true" overwrite="true">
+ <fileset dir="${basedir}/bin/gtk/hpux/ia64" includes="**" />
</copy>
- <chmod perm="755" dir="${feature.base}/hpux.gtk.ia64_32/${collectingFolder}" includes="launcher" />
+ <chmod perm="755" dir="${feature.base}/hpux.gtk.ia64/${collectingFolder}" includes="launcher" />
</target>
<target name="rootFilesqnx_photon_x86">
<mkdir dir="${feature.base}/qnx.photon.x86/${collectingFolder}"/>
@@ -254,7 +254,7 @@
<antcall target="rootFilessolaris_gtk_x86"/>
<antcall target="rootFilesaix_gtk_ppc64"/>
<antcall target="rootFilesaix_gtk_ppc"/>
- <antcall target="rootFileshpux_gtk_ia64_32"/>
+ <antcall target="rootFileshpux_gtk_ia64"/>
<antcall target="rootFilesqnx_photon_x86"/>
</target>

Back to the top