[Bf-blender-cvs] [a1e2b29] master: Install_deps: Hopefully fix broken checks for numpy package in fedora-like distro.

Bastien Montagne noreply at git.blender.org
Tue Sep 22 11:01:10 CEST 2015


Commit: a1e2b292bb9f84092b55d9e7a003d232b525d782
Author: Bastien Montagne
Date:   Tue Sep 22 11:00:35 2015 +0200
Branches: master
https://developer.blender.org/rBa1e2b292bb9f84092b55d9e7a003d232b525d782

Install_deps: Hopefully fix broken checks for numpy package in fedora-like distro.

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

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 accbc43..2d83985 100755
--- a/build_files/build_environment/install_deps.sh
+++ b/build_files/build_environment/install_deps.sh
@@ -2538,7 +2538,7 @@ install_RPM() {
       if $NUMPY_SKIP; then
         WARNING "Skipping NumPy installation, as requested..."
       else
-        check_package_version_match_RPM python3-numpy $NUMPY_VERSION_MIN
+        check_package_version_ge_RPM python3-numpy $NUMPY_VERSION_MIN
         if [ $? -eq 0 ]; then
           install_packages_RPM python3-numpy
         elif $NUMPY_REQUIRED; then




More information about the Bf-blender-cvs mailing list