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 <bastien@blender.org>2020-12-14 14:22:04 +0300
committerBastien Montagne <bastien@blender.org>2020-12-14 14:23:21 +0300
commit6da609fcb365f2e51299045b7d5e93fd17583f54 (patch)
treec5aa4462c00502bfc332f059ce72b59e3e0ea95d /CMakeLists.txt
parent812ea9184221a8ca5785528bebc3ef342a8ecfb4 (diff)
Fix own error in rB5d570c875eda in CMake script.
My mistake, though CMake could handle default arguments but it needs to be explicitly passed actually.
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 71186a58281..03508791623 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -1632,7 +1632,7 @@ if(WITH_PYTHON)
if(WIN32 OR APPLE)
# pass, we have this in lib/python/site-packages
elseif(WITH_PYTHON_INSTALL_REQUESTS)
- find_python_package(requests)
+ find_python_package(requests "")
endif()
endif()