From 4cfff68344093a3d0d88cae77a70bac6c8381faf Mon Sep 17 00:00:00 2001 From: Bastien Montagne Date: Thu, 11 Feb 2016 10:19:05 +0100 Subject: [PATCH] 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. --- build_files/build_environment/install_deps.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build_files/build_environment/install_deps.sh b/build_files/build_environment/install_deps.sh index 2f8714b6e32..10425d3f551 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