summaryrefslogtreecommitdiff
path: root/jenkins.sh
diff options
context:
space:
mode:
authorPrathamesh Kulkarni <prathamesh.kulkarni@linaro.org>2019-03-20 12:15:29 +0530
committerPrathamesh Kulkarni <prathamesh.kulkarni@linaro.org>2019-03-20 15:17:29 +0530
commit211ed6deb1bd513c58b70074fbf6be4c676d8d16 (patch)
treea4eff8ff9496cc2004f6b0cf86e9f8e1d92cbeef /jenkins.sh
parentff38b46ce9d3c7e712dc6a34b94d23356e650680 (diff)
Use --set buildconfig=bootstrap instead of --enable bootstrap.
The point of this patch is to replace --enable bootstrap from our existing scripts with --set buildconfig=bootstrap, so we can remove --enable bootstrap option from abe. A quick grep in jenkins-scripts repo shows that only jenkins.sh and round-robin.sh pass "--enable bootstrap" to abe. Change-Id: I76294650cfc388f2f218a0af482f36c4a8fbd9f1
Diffstat (limited to 'jenkins.sh')
-rwxr-xr-xjenkins.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/jenkins.sh b/jenkins.sh
index b2fab679..43af4fbe 100755
--- a/jenkins.sh
+++ b/jenkins.sh
@@ -416,9 +416,9 @@ if test x"${try_bootstrap}" = xtrue; then
build1="$(grep "^build=" host.conf | sed -e "s/build=\(.*\)-\(.*\)-\(.*\)-\(.*\)/\1-\3-\4/")"
target1="$(echo ${target} | sed -e "s/\(.*\)-\(.*\)-\(.*\)-\(.*\)/\1-\3-\4/")"
if test x"${build1}" = x"${target1}" -o x"${platform}" = x""; then
- try_bootstrap="--enable bootstrap"
+ try_bootstrap="--set buildconfig=bootstrap"
else
- try_bootstrap="--disable bootstrap"
+ try_bootstrap=""
fi
else
try_bootstrap=""