Downloading boost from sourceforge instead of boostorg

Signed-off-by: Nikhil Raj <nikhil.raj@arm.com>
Change-Id: I7da8fdf2afef8382f1544ebda5aeb40cef8608e2
diff --git a/setup.sh b/setup.sh
index 76b09b3..8b34544 100755
--- a/setup.sh
+++ b/setup.sh
@@ -14,7 +14,10 @@
 
   BOOST_PKG=boost_1_64_0.tar.gz
 
-  curl -LOk https://dl.bintray.com/boostorg/release/1.64.0/source/boost_1_64_0.tar.gz
+  # 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
   AssertZeroExitCode "Downloading Boost failed"
 
   tar xzf $BOOST_PKG