forked from pool/cmake
Dirk Mueller
a90db25848
- update to 3.26.2: * This version made no changes to documented features or interfaces. Some implementation updates were made to support ecosystem changes and/or fix regressions. OBS-URL: https://build.opensuse.org/request/show/1075569 OBS-URL: https://build.opensuse.org/package/show/devel:tools:building/cmake?expand=0&rev=522
17 lines
777 B
Diff
17 lines
777 B
Diff
Index: cmake-3.26.2/Modules/FindPythonInterp.cmake
|
|
===================================================================
|
|
--- cmake-3.26.2.orig/Modules/FindPythonInterp.cmake
|
|
+++ cmake-3.26.2/Modules/FindPythonInterp.cmake
|
|
@@ -92,8 +92,9 @@ if(DEFINED PYTHONLIBS_VERSION_STRING)
|
|
list(GET _PYTHONLIBS_VERSION 1 _PYTHONLIBS_VERSION_MINOR)
|
|
list(APPEND _Python_VERSIONS ${_PYTHONLIBS_VERSION_MAJOR}.${_PYTHONLIBS_VERSION_MINOR})
|
|
endif()
|
|
-# Search for the current active python version first
|
|
-list(APPEND _Python_VERSIONS ";")
|
|
+
|
|
+# Search python versions from newest to oldest as python3 is the default and
|
|
+# /usr/bin/python doesn't mean the systemd on SUSE / openSUSE systems
|
|
list(APPEND _Python_VERSIONS ${_PYTHON_FIND_OTHER_VERSIONS})
|
|
|
|
unset(_PYTHON_FIND_OTHER_VERSIONS)
|