Skip to content

Commit 1330765

Browse files
committed
cmake: make FindPython use system Python 3 version
The newest installed version of Python 3 is often not the default version on a Gentoo Linux system, where multiple Python 3 versions can be installed on a single system and /usr/bin/python3 is the one that should be used by default. Related: https://gitlab.kitware.com/cmake/cmake/-/merge_requests/8287 Closes: #153
1 parent 4f43fe8 commit 1330765

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/CMakeLists.txt

+4
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,10 @@ option(PYCSDIFF_PYTHON2 "Set to ON to build pycsdiff for Python 2" OFF)
9191
option(PYCSDIFF_PYTHON3 "Set to ON to build pycsdiff for Python 3" ON)
9292

9393
macro(build_pycsdiff version)
94+
# make FindPython use system Python version
95+
# https://gitlab.kitware.com/cmake/cmake/-/merge_requests/8287
96+
set(Python${version}_FIND_UNVERSIONED_NAMES FIRST)
97+
9498
# check for Python libs (e.g. python${version}-devel on Fedora)
9599
# Interpreter is required for Python_SITEARCH
96100
find_package(Python${version} COMPONENTS Development Interpreter)

0 commit comments

Comments
 (0)