Skip to main content
aboutsummaryrefslogtreecommitdiffstats
path: root/releng
diff options
context:
space:
mode:
Diffstat (limited to 'releng')
-rw-r--r--releng/org.eclipse.equinox.launcher.releng/build.xml8
-rw-r--r--releng/org.eclipse.equinox.launcher.releng/launcher.properties8
2 files changed, 9 insertions, 7 deletions
diff --git a/releng/org.eclipse.equinox.launcher.releng/build.xml b/releng/org.eclipse.equinox.launcher.releng/build.xml
index 1ad64c643..912e01902 100644
--- a/releng/org.eclipse.equinox.launcher.releng/build.xml
+++ b/releng/org.eclipse.equinox.launcher.releng/build.xml
@@ -91,6 +91,7 @@
<resolveProperty name="javaArg" value="j_${os}.${arch}" />
<resolveProperty name="userName" value="u_${os}.${arch}" />
<property name="userName" value="swtbuild" />
+ <property name="localGit" value="../../.." />
<!-- windows is built locally, everything else is remote -->
<condition property="local" >
@@ -156,7 +157,12 @@
<equals arg1="cocoa" arg2="${ws}" />
</condition>
<condition property="javaParam" value="" else="-java ${javaArg}" >
- <equals arg1="macosx" arg2="${os}" />
+ <or>
+ <equals arg1="macosx" arg2="${os}" />
+ <not>
+ <isset property="javaArg"/>
+ </not>
+ </or>
</condition>
<sshexec host="${machine}"
username="${userName}"
diff --git a/releng/org.eclipse.equinox.launcher.releng/launcher.properties b/releng/org.eclipse.equinox.launcher.releng/launcher.properties
index cf323f6fb..7e2c812f9 100644
--- a/releng/org.eclipse.equinox.launcher.releng/launcher.properties
+++ b/releng/org.eclipse.equinox.launcher.releng/launcher.properties
@@ -5,11 +5,7 @@
m_linux.x86_64=build.eclipse.org
#list of paths to a Java SDK on each of the machines: j_${os}.${arch}
-# value is -javaHome /path/to/jdk or -java relative/path/to/jdk
-j_linux.x86_64=-javaHome /shared/common/jdk-1.6.0_10
+j_linux.x86_64=/shared/common/jdk-1.6.0_10
#user names to use on each of the machines if different from the user running hudson, u_${os}.${arch}
-u_linux.x86_64=aniefer
-
-#location to scp the binary results to
-resultsBaseFolder=build.eclipse.org:/shared/eclipse/equinox/results \ No newline at end of file
+u_linux.x86_64=swtbuild

Back to the top