diff options
author | Sage Weil <sage@redhat.com> | 2017-09-26 17:15:17 -0400 |
---|---|---|
committer | Sage Weil <sage@redhat.com> | 2017-09-26 17:22:36 -0400 |
commit | 19987549e0ce526e353e24adddc7df8b1f165aab (patch) | |
tree | 9872b5d869b89954a9a7f34501eb0fc7c562a105 /make-dist | |
parent | 34cf8787ed777c37ffb792dae45ce41c2befde9b (diff) | |
download | ceph-19987549e0ce526e353e24adddc7df8b1f165aab.tar.gz |
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 <sage@redhat.com>
Diffstat (limited to 'make-dist')
-rwxr-xr-x | make-dist | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/make-dist b/make-dist index 7bc2c096cbc..d7a157bdea7 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 |