diff options
author | Brad King <brad.king@kitware.com> | 2023-05-18 13:19:02 (GMT) |
---|---|---|
committer | Kitware Robot <kwrobot@kitware.com> | 2023-05-18 13:19:19 (GMT) |
commit | 5855153cec6ad8a334c22033248a9e52095ff9b8 (patch) | |
tree | 0539b2416461701c7ea3d90fe8dc4b76be5f9fdd | |
parent | 37f06fad18232b4e7206e380aefd6d27112c7ec3 (diff) | |
parent | 31faf3945fe0c076656e774ef86349d186d0ce78 (diff) | |
download | CMake-5855153cec6ad8a334c22033248a9e52095ff9b8.zip CMake-5855153cec6ad8a334c22033248a9e52095ff9b8.tar.gz CMake-5855153cec6ad8a334c22033248a9e52095ff9b8.tar.bz2 |
Merge topic 'FindPython-fix-launcher-typo' into release-3.26
31faf3945f FindPython: fix interpreter launcher variable spelling
Acked-by: Kitware Robot <kwrobot@kitware.com>
Merge-request: !8487
-rw-r--r-- | Modules/FindPython/Support.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/FindPython/Support.cmake b/Modules/FindPython/Support.cmake index 517ac21..f842068 100644 --- a/Modules/FindPython/Support.cmake +++ b/Modules/FindPython/Support.cmake @@ -2069,7 +2069,7 @@ if ("Interpreter" IN_LIST ${_PYTHON_PREFIX}_FIND_COMPONENTS) # Use interpreter version and ABI for future searches to ensure consistency set (_${_PYTHON_PREFIX}_FIND_VERSIONS ${${_PYTHON_PREFIX}_VERSION_MAJOR}.${${_PYTHON_PREFIX}_VERSION_MINOR}) - execute_process (COMMAND ${_${_PYTHON_PREFIX}_INTERPRETR_LAUNCHER} "${_${_PYTHON_PREFIX}_EXECUTABLE}" -c + execute_process (COMMAND ${_${_PYTHON_PREFIX}_INTERPRETER_LAUNCHER} "${_${_PYTHON_PREFIX}_EXECUTABLE}" -c "import sys; sys.stdout.write(sys.abiflags)" RESULT_VARIABLE _${_PYTHON_PREFIX}_RESULT OUTPUT_VARIABLE _${_PYTHON_PREFIX}_ABIFLAGS |