Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBastien Montagne <montagne29@wanadoo.fr>2015-09-22 12:00:35 +0300
committerBastien Montagne <montagne29@wanadoo.fr>2015-09-22 12:00:35 +0300
commita1e2b292bb9f84092b55d9e7a003d232b525d782 (patch)
tree168f7d677908ba79fe7cdedfc08ed4e409f98ed1 /build_files
parentf2418f48fa42ac77bfb61ff9728d883f827e85f3 (diff)
Install_deps: Hopefully fix broken checks for numpy package in fedora-like distro.
Diffstat (limited to 'build_files')
-rwxr-xr-xbuild_files/build_environment/install_deps.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/build_files/build_environment/install_deps.sh b/build_files/build_environment/install_deps.sh
index accbc43480b..2d839858b80 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