diff options
author | Kefu Chai <kchai@redhat.com> | 2019-12-18 10:12:52 +0100 |
---|---|---|
committer | Kefu Chai <kchai@redhat.com> | 2019-12-19 04:52:54 +0100 |
commit | 79584862f6f90b208054bf7be8604ab5efcda1b5 (patch) | |
tree | 2e662b960ee179d3d22d50124654df9f5282ad63 /cmake/modules/Distutils.cmake | |
parent | cmake: drop WITH_PYTHON2 option (diff) | |
download | ceph-79584862f6f90b208054bf7be8604ab5efcda1b5.tar.xz ceph-79584862f6f90b208054bf7be8604ab5efcda1b5.zip |
src,qa: install python bindings into lib/cython_modules/lib.3
instead of checking for the WITH_PYTHON* options, just hardwire to lib.3
Signed-off-by: Kefu Chai <kchai@redhat.com>
Diffstat (limited to 'cmake/modules/Distutils.cmake')
-rw-r--r-- | cmake/modules/Distutils.cmake | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cmake/modules/Distutils.cmake b/cmake/modules/Distutils.cmake index b47d14b1465..5fe929499d3 100644 --- a/cmake/modules/Distutils.cmake +++ b/cmake/modules/Distutils.cmake @@ -69,7 +69,7 @@ function(distutils_add_cython_module target name src) if(NOT result EQUAL 0) message(FATAL_ERROR "Unable to tell python extension's suffix: ${error}") endif() - set(output_dir "${CYTHON_MODULE_DIR}/lib.${Python${python_version}_VERSION_MAJOR}") + set(output_dir "${CYTHON_MODULE_DIR}/lib.3") set(setup_py ${CMAKE_CURRENT_SOURCE_DIR}/setup.py) add_custom_command( OUTPUT ${output_dir}/${name}${ext_suffix} @@ -120,7 +120,7 @@ function(distutils_install_cython_module name) COMMAND ${Python3_EXECUTABLE} ${CMAKE_CURRENT_SOURCE_DIR}/setup.py build --verbose --build-base ${CYTHON_MODULE_DIR} - --build-platlib ${CYTHON_MODULE_DIR}/lib.${Python${python_version}_VERSION_MAJOR} + --build-platlib ${CYTHON_MODULE_DIR}/lib.3 build_ext --cython-c-in-temp --build-temp ${CMAKE_CURRENT_BINARY_DIR} --cython-include-dirs ${PROJECT_SOURCE_DIR}/src/pybind/rados install \${options} --single-version-externally-managed --record /dev/null egg_info --egg-base ${CMAKE_CURRENT_BINARY_DIR} |