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.
This commit is contained in:
Bastien Montagne 2016-02-11 10:19:05 +01:00
parent cbdc72fb35
commit 4cfff68344

@ -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