Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Williams2013-01-21 04:00:23 +0000
committerDavid Williams2013-01-21 04:00:23 +0000
commite16e774be5f2873ce8934de9b3a28422e891f822 (patch)
tree1188ae8a9d7e24e0d889ce2842d2a602f7b75aea
parent38a487c34f3ce13d7a4e01b6f3cf3202920d8ad2 (diff)
downloadeclipse.platform.releng.aggregator-e16e774be5f2873ce8934de9b3a28422e891f822.tar.gz
eclipse.platform.releng.aggregator-e16e774be5f2873ce8934de9b3a28422e891f822.tar.xz
eclipse.platform.releng.aggregator-e16e774be5f2873ce8934de9b3a28422e891f822.zip
set PATH in master-build.sh (not, just mb files).
-rw-r--r--scripts/build_eclipse_org.env2
-rw-r--r--scripts/master-build.sh2
2 files changed, 4 insertions, 0 deletions
diff --git a/scripts/build_eclipse_org.env b/scripts/build_eclipse_org.env
index d2b05a525..270f8bdd1 100644
--- a/scripts/build_eclipse_org.env
+++ b/scripts/build_eclipse_org.env
@@ -19,6 +19,8 @@ export JAVA_HOME=${JAVA_HOME:-/shared/common/jdk1.7.0}
export MAVEN_OPTS=${MAVEN_OPTS:--Xmx2048m -XX:MaxPermSize=256M -Djava.io.tmpdir=${TMP_DIR}}
export MAVEN_PATH=${MAVEN_PATH:-/shared/common/apache-maven-3.0.4/bin}
+export PATH=$JAVA_HOME/bin:$MAVEN_PATH:$ANT_HOME/bin:$PATH
+
AGGREGATOR_REPO=git://git.eclipse.org/gitroot/platform/eclipse.platform.releng.aggregator.git
BASEBUILDER_TAG=R38M6PlusRC3F
diff --git a/scripts/master-build.sh b/scripts/master-build.sh
index 1f6d6d7cb..aaa9af332 100644
--- a/scripts/master-build.sh
+++ b/scripts/master-build.sh
@@ -48,6 +48,8 @@ mkdir -p ${TMP_DIR}
# with values for this build (some of them computed) partially for documentation, and
# partially so this build can be re-ran or re-started using it, instead of
# original env file, which would compute different values (in some cases).
+echo "export PATH=\"${PATH}\"" >$BUILD_ENV_FILE
+echo "export INITIAL_ENV_FILE=\"${INITIAL_ENV_FILE}\"" >>$BUILD_ENV_FILE
echo "export BUILD_ROOT=\"${BUILD_ROOT}\"" >>$BUILD_ENV_FILE
echo "export BRANCH=\"${BRANCH}\"" >>$BUILD_ENV_FILE
echo "export STREAM=\"${STREAM}\"" >>$BUILD_ENV_FILE

Back to the top