[Bf-blender-cvs] [4cfff68] master: install_deps: fix boost installation on Fedora/Suze & co.

Bastien Montagne noreply at git.blender.org
Thu Feb 11 10:21:36 CET 2016


Commit: 4cfff68344093a3d0d88cae77a70bac6c8381faf
Author: Bastien Montagne
Date:   Thu Feb 11 10:19:05 2016 +0100
Branches: master
https://developer.blender.org/rB4cfff68344093a3d0d88cae77a70bac6c8381faf

install_deps: fix boost installation on Fedora/Suze & co.

Was only trying to install $BOOST_VERSION or higher boost - being fairly recent
this always failed. We can live with older versions too, so now using
*BOOST_VERSION_MIN as with other distros.

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

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 2f8714b..10425d3 100755
--- a/build_files/build_environment/install_deps.sh
+++ b/build_files/build_environment/install_deps.sh
@@ -3089,7 +3089,7 @@ install_RPM() {
     INFO "Forced Boost building, as requested..."
     compile_Boost
   else
-    check_package_version_ge_RPM boost-devel $BOOST_VERSION
+    check_package_version_ge_RPM boost-devel $BOOST_VERSION_MIN
     if [ $? -eq 0 ]; then
       install_packages_RPM boost-devel
       clean_Boost




More information about the Bf-blender-cvs mailing list