Releng: use previous SDK for installing the previous compiler into
- invoke pde build from bootLocation
diff --git a/releng/build-scripts/build/build.xml b/releng/build-scripts/build/build.xml
index 99b822f..fb97b13 100644
--- a/releng/build-scripts/build/build.xml
+++ b/releng/build-scripts/build/build.xml
@@ -18,7 +18,8 @@
OTScriptDir: where most build scripts are found (build)
build.root.dir: (testrun/build-root)
- baseLocation: from where eclipse is running (testrun/build-root/eclipse)
+ bootLocation: from where eclipse is running (testrun/build-root/eclipse)
+ baseLocation: the target eclipse pde will build against (testrun/test-root/eclipse)
run.eclipseScriptDir: relative location of pde.build's scripts
buildDirectory: where sources shall be built (testrun/build-root/src)
@@ -58,7 +59,7 @@
<property name="postingDirectory" value="${build.root.dir}/../ecj" />
<!--run the pde-build for the specified ${builder} (OT-Compiler or OTDT-Build) -->
- <ant antfile="build.xml" dir="${baseLocation}/${run.eclipseScriptDir}" />
+ <ant antfile="build.xml" dir="${bootLocation}/${run.eclipseScriptDir}" />
</target>
diff --git a/releng/build-scripts/build/run.xml b/releng/build-scripts/build/run.xml
index b4c6ad7..a90c6fe 100644
--- a/releng/build-scripts/build/run.xml
+++ b/releng/build-scripts/build/run.xml
@@ -296,6 +296,7 @@
<arg value="-buildfile"/>
<arg value="${buildfile}"/>
<arg value="-Dbuild.root.dir=${build.root.dir}"/>
+ <arg value="-DbootLocation=${bootLocation}"/>
<arg value="-DbaseLocation=${baseLocation}"/>
<arg value="-Drun.eclipseScriptDir=${run.eclipseScriptDir}"/>
<arg value="-DOTScriptDir=${OTScriptDir}"/>