summaryrefslogtreecommitdiff
path: root/jenkins.sh
diff options
context:
space:
mode:
authorChristophe Lyon <christophe.lyon@linaro.org>2016-11-03 14:24:38 +0100
committerChristophe Lyon <christophe.lyon@linaro.org>2016-11-06 16:24:54 +0000
commit2e90394b04c643d7ade1a89b041b4f95f026ec7d (patch)
tree528ab3d85e79c70f0db259f19b9fb64febf63679 /jenkins.sh
parent22a184c9fa564fbac329002872401d17c256ed8d (diff)
Remove non-functional --nodepends option. TCWG-859.
In fact, the option has been removed a long time ago, but some currently unused code in jenkins.sh was still using it. Change-Id: I1bf2810b31704a6693bec609b4620b1ae34f4b1f
Diffstat (limited to 'jenkins.sh')
-rwxr-xr-xjenkins.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/jenkins.sh b/jenkins.sh
index ed3c2691..09024fa3 100755
--- a/jenkins.sh
+++ b/jenkins.sh
@@ -475,13 +475,13 @@ sums="`find ${user_workspace} -name \*.sum -not -path "*/gdb/testsuite/outputs/*
# Canadian Crosses are a win32 hosted cross toolchain built on a Linux
# machine.
if test x"${canadian}" = x"true"; then
- $CONFIG_SHELL ${abe_dir}/abe.sh --disable update --nodepends ${change} ${platform} --build all
+ $CONFIG_SHELL ${abe_dir}/abe.sh --disable update ${change} ${platform} --build all
distro="`lsb_release -sc`"
# Ubuntu Lucid uses an older version of Mingw32
if test x"${distro}" = x"lucid"; then
- $CONFIG_SHELL ${abe_dir}/abe.sh --disable update --nodepends ${change} ${tars} --host=i586-mingw32msvc ${platform} --build all
+ $CONFIG_SHELL ${abe_dir}/abe.sh --disable update ${change} ${tars} --host=i586-mingw32msvc ${platform} --build all
else
- $CONFIG_SHELL ${abe_dir}/abe.sh --disable update --nodepends ${change} ${tars} --host=i686-w64-mingw32 ${platform} --build all
+ $CONFIG_SHELL ${abe_dir}/abe.sh --disable update ${change} ${tars} --host=i686-w64-mingw32 ${platform} --build all
fi
fi