[Bf-blender-cvs] [7d8c5d56235] master: install_deps: Fix (unreported) broken Boost source URL.

Bastien Montagne noreply at git.blender.org
Fri May 8 18:05:52 CEST 2020


Commit: 7d8c5d56235f2dd3fc770ebdf0f930a0727001dd
Author: Bastien Montagne
Date:   Fri May 8 17:55:35 2020 +0200
Branches: master
https://developer.blender.org/rB7d8c5d56235f2dd3fc770ebdf0f930a0727001dd

install_deps: Fix (unreported) broken Boost source URL.

===================================================================

M	build_files/build_environment/install_deps.sh

===================================================================

diff --git a/build_files/build_environment/install_deps.sh b/build_files/build_environment/install_deps.sh
index d882c625c02..764828af332 100755
--- a/build_files/build_environment/install_deps.sh
+++ b/build_files/build_environment/install_deps.sh
@@ -898,7 +898,7 @@ PYTHON_SOURCE=( "https://www.python.org/ftp/python/$PYTHON_VERSION/Python-$PYTHO
 NUMPY_SOURCE=( "https://github.com/numpy/numpy/releases/download/v$NUMPY_VERSION/numpy-$NUMPY_VERSION.tar.gz" )
 
 _boost_version_nodots=`echo "$BOOST_VERSION" | sed -r 's/\./_/g'`
-BOOST_SOURCE=( "http://sourceforge.net/projects/boost/files/boost/$BOOST_VERSION/boost_$_boost_version_nodots.tar.bz2/download" )
+BOOST_SOURCE=( "https://dl.bintray.com/boostorg/release/$BOOST_VERSION/source/boost_$_boost_version_nodots.tar.bz2" )
 BOOST_BUILD_MODULES="--with-system --with-filesystem --with-thread --with-regex --with-locale --with-date_time --with-wave --with-iostreams --with-python --with-program_options"
 
 OCIO_USE_REPO=false



More information about the Bf-blender-cvs mailing list