nixpkgs/pkgs/tools/package-management/createrepo_c/fix-python-install-path.patch

12 lines
509 B
Diff
Raw Normal View History

2021-05-01 06:09:59 +00:00
--- a/src/python/CMakeLists.txt
+++ b/src/python/CMakeLists.txt
@@ -14,7 +14,7 @@ if (NOT SKBUILD)
FIND_PACKAGE(PythonLibs 3 REQUIRED)
endif (NOT SKBUILD)
2017-03-19 15:08:47 +00:00
-EXECUTE_PROCESS(COMMAND ${PYTHON_EXECUTABLE} -c "from sys import stdout; from distutils import sysconfig; stdout.write(sysconfig.get_python_lib(True))" OUTPUT_VARIABLE PYTHON_INSTALL_DIR)
+SET(PYTHON_INSTALL_DIR "@PYTHON_INSTALL_DIR@")
INCLUDE_DIRECTORIES (${PYTHON_INCLUDE_PATH})
2021-05-01 06:09:59 +00:00
2017-03-19 15:08:47 +00:00
MESSAGE(STATUS "Python install dir is ${PYTHON_INSTALL_DIR}")