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:
authorBrecht Van Lommel <brecht@blender.org>2022-09-12 16:45:54 +0300
committerBrecht Van Lommel <brecht@blender.org>2022-09-12 16:48:09 +0300
commit038a19ce6c357fb4541cda6169339c57d6fe473e (patch)
treee7b2a05b669a2c74b6936888d305075bd4704ebc
parent16af35054dc75fbfaf4bfc365d7223d8fdb23f01 (diff)
Fix macOS incomplete Python install after recent changes
After 2c23b4e0bff0 the meaning of PYTHON_LIBPATH changed.
-rw-r--r--source/creator/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/creator/CMakeLists.txt b/source/creator/CMakeLists.txt
index b228c8d9ac1..eee64b97e82 100644
--- a/source/creator/CMakeLists.txt
+++ b/source/creator/CMakeLists.txt
@@ -1173,7 +1173,7 @@ elseif(APPLE)
if(WITH_PYTHON AND NOT WITH_PYTHON_MODULE AND NOT WITH_PYTHON_FRAMEWORK)
# Copy the python libraries into the install directory.
install_dir(
- ${PYTHON_LIBPATH}
+ ${PYTHON_LIBPATH}/python${PYTHON_VERSION}
${TARGETDIR_VER}/python/lib
)