bionic-amd64-tf-a-build: Use wget to download ARM Clang
There is an error to download ARM Clang with curl for the time being.
Use wget to download.
This change is similar to earlier change made for bionic-amd64-tf-m-build.
Signed-off-by: Paul Sokolovsky <paul.sokolovsky@linaro.org>
Change-Id: I4a269fab950ed9d0a76e7eb149137458127852d9
diff --git a/bionic-amd64-tf-a-build/tf-dependencies.install b/bionic-amd64-tf-a-build/tf-dependencies.install
index 473bdab..072fc5e 100755
--- a/bionic-amd64-tf-a-build/tf-dependencies.install
+++ b/bionic-amd64-tf-a-build/tf-dependencies.install
@@ -48,15 +48,15 @@
# NOTE: Toolchain is not available through PATH so to use it, CC should point to
# CC=${TOOLS_DIR}/armclang-6.8/bin/armclang
mkdir -p /tmp/armclang-6.8
-curl --connect-timeout 5 --retry 5 --retry-delay 1 --create-dirs -fsSLo /tmp/DS500-BN-00026-r5p0-10rel0.tgz \
- https://developer.arm.com/-/media/Files/downloads/compiler/DS500-BN-00026-r5p0-10rel0.tgz?revision=1f1cb8d5-4d1c-4516-9583-b347f71844f4?product=Download%20Arm%20Compiler,64-bit,,Linux,6.8
+wget -O /tmp/DS500-BN-00026-r5p0-10rel0.tgz \
+ -q https://developer.arm.com/-/media/Files/downloads/compiler/DS500-BN-00026-r5p0-10rel0.tgz
tar -xf /tmp/DS500-BN-00026-r5p0-10rel0.tgz -C /tmp/armclang-6.8
/tmp/armclang-6.8/install_x86_64.sh --no-interactive --i-agree-to-the-contained-eula -d ${TOOLS_DIR}/armclang-6.8
# Install Arm Clang 6.13 (armclang)
mkdir -p /tmp/armclang-6.13
-curl --connect-timeout 5 --retry 5 --retry-delay 1 --create-dirs -fsSLo /tmp/DS500-BN-00026-r5p0-15rel0.tgz \
- https://developer.arm.com/-/media/Files/downloads/compiler/DS500-BN-00026-r5p0-15rel0.tgz?revision=6a961cf7-1d9a-4664-900b-11d20552dbc7?product=Download%20Arm%20Compiler,64-bit,,Linux,6.13
+wget -O /tmp/DS500-BN-00026-r5p0-15rel0.tgz \
+ -q https://developer.arm.com/-/media/Files/downloads/compiler/DS500-BN-00026-r5p0-15rel0.tgz
tar -xf /tmp/DS500-BN-00026-r5p0-15rel0.tgz -C /tmp/armclang-6.13
/tmp/armclang-6.13/install_x86_64.sh --no-interactive --i-agree-to-the-contained-eula -d ${TOOLS_DIR}