From 72a7d889d67a7effd074844d1aa7737de6def814 Mon Sep 17 00:00:00 2001 From: Antonio Rojas Date: Thu, 26 Oct 2023 23:41:10 +0200 Subject: [PATCH] Fix Python module install dir This is not part of the Python standard library, so it belongs in SITEARCH, not STDARCH Signed-off-by: Antonio Rojas --- python/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/CMakeLists.txt b/python/CMakeLists.txt index e42c4fb9b1..1d4f466537 100644 --- a/python/CMakeLists.txt +++ b/python/CMakeLists.txt @@ -17,7 +17,7 @@ set(wrapper_SRCS set(_python_module_install_dir "avogadro") # SKBUILD is set for binary wheel if (NOT SKBUILD) - set(_python_module_install_dir "${Python_STDARCH}/avogadro") + set(_python_module_install_dir "${Python_SITEARCH}/avogadro") endif() set(CMAKE_MODULE_LINKER_FLAGS "")