[Bf-blender-cvs] [6da609fcb36] master: Fix own error in rB5d570c875eda in CMake script.

Bastien Montagne noreply at git.blender.org
Mon Dec 14 12:23:26 CET 2020


Commit: 6da609fcb365f2e51299045b7d5e93fd17583f54
Author: Bastien Montagne
Date:   Mon Dec 14 12:22:04 2020 +0100
Branches: master
https://developer.blender.org/rB6da609fcb365f2e51299045b7d5e93fd17583f54

Fix own error in rB5d570c875eda in CMake script.

My mistake, though CMake could handle default arguments but it needs to
be explicitly passed actually.

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

M	CMakeLists.txt

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

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()



More information about the Bf-blender-cvs mailing list