Skip to content

Commit

Permalink
Fix Python module install dir
Browse files Browse the repository at this point in the history
This is not part of the Python standard library, so it belongs in SITEARCH, not STDARCH

Signed-off-by: Antonio Rojas <[email protected]>
  • Loading branch information
antonio-rojas committed Oct 27, 2023
1 parent eed1ba8 commit 72a7d88
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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 "")
Expand Down

0 comments on commit 72a7d88

Please sign in to comment.