From: Sage Weil Date: Tue, 26 Sep 2017 21:15:17 +0000 (-0400) Subject: make-dist,cmake: move boost tarball location to download.ceph.com X-Git-Tag: v12.2.3~236^2~3 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=7929ff7f7edeff6df27adfdf6da5b4a89e36c4e5;p=ceph.git make-dist,cmake: move boost tarball location to download.ceph.com Sourceforge is down. Also, we can hammer our servers instead of theirs. Signed-off-by: Sage Weil (cherry picked from commit 19987549e0ce526e353e24adddc7df8b1f165aab) --- diff --git a/cmake/modules/BuildBoost.cmake b/cmake/modules/BuildBoost.cmake index 2b5f87740a65..3dc6bdff52f4 100644 --- a/cmake/modules/BuildBoost.cmake +++ b/cmake/modules/BuildBoost.cmake @@ -86,7 +86,7 @@ function(do_build_boost version) set(boost_version 1.63.0) set(boost_md5 1c837ecd990bb022d07e7aab32b09847) string(REPLACE "." "_" boost_version_underscore ${boost_version} ) - set(boost_url http://downloads.sourceforge.net/project/boost/boost/${boost_version}/boost_${boost_version_underscore}.tar.bz2) + set(boost_url https://download.ceph.com/qa/boost_${boost_version_underscore}.tar.bz2) set(source_dir URL ${boost_url} URL_MD5 ${boost_md5}) diff --git a/make-dist b/make-dist index 7bc2c096cbc1..d7a157bdea72 100755 --- a/make-dist +++ b/make-dist @@ -27,7 +27,7 @@ download_boost() { boost_fname=boost_${boost_version_underscore}.tar.bz2 echo "downloading boost_$boost_version..." wget --no-verbose -O $boost_fname \ - https://downloads.sourceforge.net/project/boost/boost/$boost_version/$boost_fname + https://download.ceph.com/qa/$boost_fname if [ $? != 0 -o ! -e $boost_fname ]; then echo "Error: failed to download boost." exit 1