Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Niefer2007-04-26 21:15:43 +0000
committerAndrew Niefer2007-04-26 21:15:43 +0000
commit94a579964f77b4f7e4d08741c3e049fc9aeaadba (patch)
treef44e61229fcd100cf6f892ded97002cff4fc903e
parent3156c4860c5c0981ee5c3820e8e22cb2b67b646f (diff)
downloadrt.equinox.framework-94a579964f77b4f7e4d08741c3e049fc9aeaadba.tar.gz
rt.equinox.framework-94a579964f77b4f7e4d08741c3e049fc9aeaadba.tar.xz
rt.equinox.framework-94a579964f77b4f7e4d08741c3e049fc9aeaadba.zip
-rw-r--r--bundles/org.eclipse.equinox.executable/target.build.properties4
-rw-r--r--bundles/org.eclipse.equinox.executable/target.build.xml10
2 files changed, 9 insertions, 5 deletions
diff --git a/bundles/org.eclipse.equinox.executable/target.build.properties b/bundles/org.eclipse.equinox.executable/target.build.properties
index 8c324beda..3a579490f 100644
--- a/bundles/org.eclipse.equinox.executable/target.build.properties
+++ b/bundles/org.eclipse.equinox.executable/target.build.properties
@@ -14,9 +14,9 @@ custom = true
####Even though marked as custom, the content of the build.properties needs to be updated to ensure correctness of RCP app exported
root.permissions.755=${launcherName}
-root.win32.win32.x86=bin/win32/win32/x86
+root.win32.win32.x86=file:bin/win32/win32/x86/eclipse.exe
-root.win32.wpf.x86=bin/wpf/win32/x86
+root.win32.wpf.x86=file:bin/wpf/win32/x86/eclipse.exe
root.linux.gtk.x86=bin/gtk/linux/x86,gtk_root
root.linux.gtk.x86.permissions.755=libcairo-swt.so
diff --git a/bundles/org.eclipse.equinox.executable/target.build.xml b/bundles/org.eclipse.equinox.executable/target.build.xml
index 4c6073eb8..5ea96f2b1 100644
--- a/bundles/org.eclipse.equinox.executable/target.build.xml
+++ b/bundles/org.eclipse.equinox.executable/target.build.xml
@@ -38,15 +38,19 @@
<target name="rootFileswin32_win32_x86">
<mkdir dir="${feature.base}/win32.win32.x86/${collectingFolder}"/>
<copy todir="${feature.base}/win32.win32.x86/${collectingFolder}" failonerror="true" overwrite="true">
- <fileset dir="${basedir}/bin/win32/win32/x86" includes="**" />
+ <fileset dir="${basedir}/bin/win32/win32/x86">
+ <include name="launcher.exe"/>
+ </fileset>
</copy>
<chmod perm="755" dir="${feature.base}/win32.win32.x86/${collectingFolder}" includes="${launcherName}" />
</target>
<target name="rootFileswin32_wpf_x86">
<mkdir dir="${feature.base}/win32.wpf.x86/${collectingFolder}"/>
- <copy todir="${feature.base}/win32.wpf.x86/${collectingFolder}" failonerror="true" overwrite="true">
- <fileset dir="${basedir}/bin/wpf/win32/x86" includes="**" />
+ <copy todir="${feature.base}/win32.wpf.x86/${collectingFolder}/" failonerror="true" overwrite="true">
+ <fileset dir="${basedir}/bin/wpf/win32/x86">
+ <include name="launcher.exe"/>
+ </fileset>
</copy>
<chmod perm="755" dir="${feature.base}/win32.wpf.x86/${collectingFolder}" includes="${launcherName}" />
</target>

Back to the top