Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Williams2013-01-13 00:18:49 +0000
committerDavid Williams2013-01-13 00:18:49 +0000
commita29b59a6866e4a607245cac2144b5ada13eb2dcd (patch)
treed93ded0a7b090235341427cafa16c49973d68664 /scripts/build_eclipse_org.env
parentfea26ec53b787dcc5783bd40cd763397c3c39d2d (diff)
downloadeclipse.platform.releng.aggregator-a29b59a6866e4a607245cac2144b5ada13eb2dcd.tar.gz
eclipse.platform.releng.aggregator-a29b59a6866e4a607245cac2144b5ada13eb2dcd.tar.xz
eclipse.platform.releng.aggregator-a29b59a6866e4a607245cac2144b5ada13eb2dcd.zip
Bug 398017 - [CBI] Many exceptions in log about writing to /tmp
(permission denied)
Diffstat (limited to 'scripts/build_eclipse_org.env')
-rw-r--r--scripts/build_eclipse_org.env16
1 files changed, 8 insertions, 8 deletions
diff --git a/scripts/build_eclipse_org.env b/scripts/build_eclipse_org.env
index d9c422893..0a00ba10d 100644
--- a/scripts/build_eclipse_org.env
+++ b/scripts/build_eclipse_org.env
@@ -1,18 +1,18 @@
# default definitions for this branch
# note, we "override" this, for now, for Eclipse Platform cronjob builds
-BUILD_ROOT=${BUILD_ROOT:-/shared/eclipse/builds}
+export BUILD_ROOT=${BUILD_ROOT:-/shared/eclipse/builds}
-BRANCH=${BRANCH:-master}
-STREAM=${STREAM:-4.3.0}
-BUILD_TYPE=${BUILD_TYPE:-N}
+export BRANCH=${BRANCH:-master}
+export STREAM=${STREAM:-4.3.0}
+export BUILD_TYPE=${BUILD_TYPE:-N}
-TMP_DIR=${TMP_DIR:-${BUILD_ROOT}/tmp}
+export TMP_DIR=${TMP_DIR:-${BUILD_ROOT}/tmp}
# these could be machine specific
-JAVA_HOME=${JAVA_HOME:-/shared/common/jdk1.7.0}
-MAVEN_OPTS=${MAVEN_OPTS:--Xmx2048m -Djava.io.tmpdir=${TMP_DIR}}
-MAVEN_PATH=${MAVEN_PATH:-/shared/common/apache-maven-3.0.4/bin}
+export JAVA_HOME=${JAVA_HOME:-/shared/common/jdk1.7.0}
+export MAVEN_OPTS=${MAVEN_OPTS:--Xmx2048m -Djava.io.tmpdir=${TMP_DIR}}
+export MAVEN_PATH=${MAVEN_PATH:-/shared/common/apache-maven-3.0.4/bin}
AGGREGATOR_REPO=git://git.eclipse.org/gitroot/platform/eclipse.platform.releng.aggregator.git
BASEBUILDER_TAG=R38M6PlusRC3F

Back to the top