Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Aniszczyk2011-06-02 15:21:24 +0000
committerChris Aniszczyk2011-06-02 15:21:53 +0000
commit72f69517dd6d60c307730f5aa59be90d06b22cc8 (patch)
treeb355e29bb56a9c3e71ae6c56339a6a47b27f6fc6
parentf2b4a42c64b23ccdfe4b1335dfb96ddc9e455321 (diff)
downloadorg.eclipse.linuxtools.eclipse-build-72f69517dd6d60c307730f5aa59be90d06b22cc8.tar.gz
org.eclipse.linuxtools.eclipse-build-72f69517dd6d60c307730f5aa59be90d06b22cc8.tar.xz
org.eclipse.linuxtools.eclipse-build-72f69517dd6d60c307730f5aa59be90d06b22cc8.zip
Fix path to efj.sh
Signed-off-by: Chris Aniszczyk <zx@redhat.com>
-rw-r--r--eclipse-build/build.xml2
1 files changed, 1 insertions, 1 deletions
diff --git a/eclipse-build/build.xml b/eclipse-build/build.xml
index 831e2fa..5091773 100644
--- a/eclipse-build/build.xml
+++ b/eclipse-build/build.xml
@@ -965,7 +965,7 @@
<include name="org.eclipse.equinox.launcher_*.jar" />
</fileset>
<property name="launcherJar" refid="equinoxLauncher"/>
- <replace file="${efj}" token="@LAUNCHER@" value="${launcherJar}"/>
+ <replace file="${efj}/efj.sh" token="@LAUNCHER@" value="${launcherJar}"/>
<!-- install icons -->
<copy file="${buildDirectory}/plugins/org.eclipse.platform/eclipse.png" tofile="${destDir}${prefix}/share/icons/hicolor/16x16/apps/eclipse.png" />
<copy file="${buildDirectory}/plugins/org.eclipse.platform/eclipse32.png" tofile="${destDir}${prefix}/share/icons/hicolor/32x32/apps/eclipse.png" />

Back to the top