aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNikhil Raj <nikhil.raj@arm.com>2020-05-25 10:21:46 +0100
committerJan Eilers <jan.eilers@arm.com>2020-05-25 12:05:04 +0100
commit81a0cdd8edabe38cfe17de2462b14c1364d0713f (patch)
treea197df940dd3352237f9287faa9b03c7c502fe96
parent4a8cbd29cd5beb35a6b96c11ba097f90965154cf (diff)
downloadandroid-nn-driver-81a0cdd8edabe38cfe17de2462b14c1364d0713f.tar.gz
Updating boost download URL in the setup.sh
* AndroidNNOOB test was failing to download boost from the sourceforge.net mirror. Hence switching back to boostorg URL Signed-off-by: Nikhil Raj <nikhil.raj@arm.com> Change-Id: Ida65ea690ced44d382358b0ea6eac021a99a9b0a
-rwxr-xr-xsetup.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/setup.sh b/setup.sh
index 8b345440..1dfc5927 100755
--- a/setup.sh
+++ b/setup.sh
@@ -16,8 +16,8 @@ if [ ! -d boost_1_64_0 ]; then
# There is a problem with downloading boost from the external. Issue can be found here:https://github.com/boostorg/boost/issues/299.
# Using a mirror link to download boost.
- # curl -LOk https://dl.bintray.com/boostorg/release/1.64.0/source/boost_1_64_0.tar.gz # Not able to download boost from this link
- curl -LOk https://sourceforge.net/projects/boost/files/boost/1.64.0/boost_1_64_0.tar.gz
+ curl -LOk https://dl.bintray.com/boostorg/release/1.64.0/source/boost_1_64_0.tar.gz
+ # curl -LOk https://sourceforge.net/projects/boost/files/boost/1.64.0/boost_1_64_0.tar.gz # had switched to this mirror as we were not able to download boost from boostorg.
AssertZeroExitCode "Downloading Boost failed"
tar xzf $BOOST_PKG