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:
authorCampbell Barton <campbell@blender.org>2022-01-18 09:18:57 +0300
committerCampbell Barton <campbell@blender.org>2022-01-18 09:23:19 +0300
commit1b946319757af390b85cf10ccf423528b1c48aec (patch)
tree67cd8c89d8ed872a4d1f5688f1d3f14da648a019
parent6dd89afa966042f8ae402c848655ac0dc0d795fe (diff)
CMake: Fix using numpy variable for the zstandard path
Copy paste error in a5917175d8c1a7cab83b401ae2f4affcd4ab8df4.
-rw-r--r--source/creator/CMakeLists.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/creator/CMakeLists.txt b/source/creator/CMakeLists.txt
index a5d20e1fa37..0609b8fd792 100644
--- a/source/creator/CMakeLists.txt
+++ b/source/creator/CMakeLists.txt
@@ -656,11 +656,11 @@ if(UNIX AND NOT APPLE)
# Install to the same directory as the source, so debian-like
# distros are happy with their policy.
set(_suffix "site-packages")
- if(${PYTHON_NUMPY_PATH} MATCHES "dist-packages")
+ if(${PYTHON_ZSTANDARD_PATH} MATCHES "dist-packages")
set(_suffix "dist-packages")
endif()
install(
- DIRECTORY ${PYTHON_NUMPY_PATH}/zstandard
+ DIRECTORY ${PYTHON_ZSTANDARD_PATH}/zstandard
DESTINATION ${TARGETDIR_VER}/python/${_target_LIB}/python${PYTHON_VERSION}/${_suffix}
PATTERN ".svn" EXCLUDE
PATTERN "__pycache__" EXCLUDE # * any cache *