Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMykola Nikishov2019-02-02 09:08:30 +0000
committerMykola Nikishov2019-02-02 10:23:01 +0000
commita77f4a30d1824d75c87079b944c67be2291feccb (patch)
tree1b0b43e4bc839bac9fdf6db5f0ba8592e8aaf0b4
parent49015d0dbb93bd2f9a2d53dc5f6ef0210248cfbc (diff)
downloadrt.equinox.framework-a77f4a30d1824d75c87079b944c67be2291feccb.tar.gz
rt.equinox.framework-a77f4a30d1824d75c87079b944c67be2291feccb.tar.xz
rt.equinox.framework-a77f4a30d1824d75c87079b944c67be2291feccb.zip
Bug 544061 - [releng] For native launchers, allow to override location of rt.equinox.binaries projectY20190205-0115I20190205-1800I20190204-1800
Tycho build depends on native launchers provided by rt.equinox.binaries/org.eclipse.equinox.executable/ project and it's location is hard-coded. Make the location of the project rt.equinox.binaries overridable via property 'rt.equinox.binaries.loc'. Change-Id: I166b7bb62086e0aecfed2c64f06e589d47835ed6 Signed-off-by: Mykola Nikishov <mn@mn.com.ua>
-rw-r--r--features/org.eclipse.equinox.executable.feature/pom.xml6
1 files changed, 5 insertions, 1 deletions
diff --git a/features/org.eclipse.equinox.executable.feature/pom.xml b/features/org.eclipse.equinox.executable.feature/pom.xml
index e01ecbd3d..ef5efee16 100644
--- a/features/org.eclipse.equinox.executable.feature/pom.xml
+++ b/features/org.eclipse.equinox.executable.feature/pom.xml
@@ -106,6 +106,10 @@
<name>!longnotexistingproperty</name>
</property>
</activation>
+ <properties>
+ <!-- location of rt.equinox.binaries project -->
+ <rt.equinox.binaries.loc>../../../</rt.equinox.binaries.loc>
+ </properties>
<build>
<plugins>
<plugin>
@@ -121,7 +125,7 @@
them -->
<echo message="Copy eclipse binaries to launcher binaries"/>
<copy todir="bin" verbose="true" includeEmptyDirs="false" failonerror="true">
- <fileset dir="../../../rt.equinox.binaries/org.eclipse.equinox.executable/bin/">
+ <fileset dir="${rt.equinox.binaries.loc}/rt.equinox.binaries/org.eclipse.equinox.executable/bin/">
<include name="cocoa/macosx/x86_64/**/*"/>
<include name="gtk/linux/ppc64le/**/*"/>
<include name="gtk/linux/x86_64/**/*"/>

Back to the top