Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Williams2016-06-19 16:50:13 +0000
committerDavid Williams2016-06-19 16:50:13 +0000
commit074baf20cb1bfeb806507d7d9a0923dfdcb39cf3 (patch)
treec6956b8e521cbab59aab648ad4d66abfa74491d5 /production/build_eclipse_org.shsource
parent27de75a96ce3fa8f8dd397e17b828c17cc9cff6a (diff)
downloadeclipse.platform.releng.aggregator-074baf20cb1bfeb806507d7d9a0923dfdcb39cf3.tar.gz
eclipse.platform.releng.aggregator-074baf20cb1bfeb806507d7d9a0923dfdcb39cf3.tar.xz
eclipse.platform.releng.aggregator-074baf20cb1bfeb806507d7d9a0923dfdcb39cf3.zip
Bug 496347 - Move "streams" directory under "production" directory
Diffstat (limited to 'production/build_eclipse_org.shsource')
-rw-r--r--production/build_eclipse_org.shsource15
1 files changed, 14 insertions, 1 deletions
diff --git a/production/build_eclipse_org.shsource b/production/build_eclipse_org.shsource
index 94b493e23..97000afc6 100644
--- a/production/build_eclipse_org.shsource
+++ b/production/build_eclipse_org.shsource
@@ -23,11 +23,24 @@ export BUILD_TYPE=${BUILD_TYPE:-N}
# If not set be caller, make sure its an empty string
# as the variable is sometimes used to "complete" a name,
-# such as "repositories${PATCH_BUILD}.txt"
+# such as "repositories_${PATCH_BUILD}.txt"
# (not sure this makes a difference in bash?
# undefined is same as empty string?)
export PATCH_BUILD=${PATCH_BUILD:-""}
+# PATCH_OR_BRANCH_LABEL is a very special purpose variable, used to identify
+# files in the same branch (usually master) that are to be used, such as
+# repositories_master.txt or index.template_${PATCH_OR_BRANCH}.php
+# If not set in bootstrap script, infer based on patch_build or branch
+if [[ -z ${PATCH_OR_BRANCH_LABEL} ]]
+then
+ if [[ -z "${PATCH_BUILD}" ]]
+ then
+ export PATCH_OR_BRANCH_LABEL=${BRANCH}
+ else
+ export PATCH_OR_BRANCH_LABEL=${PATCH_BUILD}
+ fi
+fi
# environment variable to control if jars use Java 8 with pack200 or not
# Should be temporary. See bug https://bugs.eclipse.org/bugs/show_bug.cgi?id=463510
# Not sure if this effect Maven/Tycho builds, or not.

Back to the top