Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Williams2016-04-02 15:15:40 +0000
committerDavid Williams2016-04-02 15:15:40 +0000
commit4214e15844f2773861019ef142a41e01580ba4b9 (patch)
tree79d2516206b3d87cb0b3adb8e0ac40c98810eaa6 /production/build_eclipse_org.shsource
parentecf4bc6ae8346c9e010cd690500e81195faa452e (diff)
downloadeclipse.platform.releng.aggregator-4214e15844f2773861019ef142a41e01580ba4b9.tar.gz
eclipse.platform.releng.aggregator-4214e15844f2773861019ef142a41e01580ba4b9.tar.xz
eclipse.platform.releng.aggregator-4214e15844f2773861019ef142a41e01580ba4b9.zip
Bug 487044 - Migrate some (most) cron jobs to Releng HIPP Instance
Diffstat (limited to 'production/build_eclipse_org.shsource')
-rw-r--r--production/build_eclipse_org.shsource3
1 files changed, 2 insertions, 1 deletions
diff --git a/production/build_eclipse_org.shsource b/production/build_eclipse_org.shsource
index e83283eac..3ebb1ec9d 100644
--- a/production/build_eclipse_org.shsource
+++ b/production/build_eclipse_org.shsource
@@ -52,7 +52,8 @@ export JAVA_HOME=${JAVA_HOME:-/shared/common/jdk1.8.0_x64-latest}
# built in? Or system path?
# But, without the ANT_OPTS, we do get messages about "to get repeatable builds, to ignore sysclasspath"
export ANT_HOME=${ANT_HOME:-/shared/common/apache-ant-1.9.6}
-export ANT_OPTS=${ANT_OPTS:-"-Dbuild.sysclasspath=ignore -Dincludeantruntime=false"}
+# we "add to" ANT_OPTS, since Hudson may define some required values
+export ANT_OPTS=${ANT_OPTS} "-Dbuild.sysclasspath=ignore" "-Dincludeantruntime=false"
#
# remember, MaxPermSize is specific to "Oracle VMs". It has to be removed (or over ridden)
# for other VMs or the VM might fail to start due to unrecognized -XX option.

Back to the top