mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-05 21:31:08 -06:00
FindPython: Fix erroneous regex in ABI check
A regex added by commit 6fdfe2428d (FindPython: enhance ABI checks
against include directory, 2020-09-02, v3.18.3~17^2) was missing a
backslash.
Fixes: #21223
This commit is contained in:
@@ -612,7 +612,7 @@ function (_PYTHON_GET_VERSION)
|
||||
if (NOT config)
|
||||
# pyconfig.h can be a wrapper to a platform specific pyconfig.h
|
||||
# In this case, try to identify ABI from include directory
|
||||
if (_${_PYTHON_PREFIX}_INCLUDE_DIR MATCHES "python${version_major}\.${version_minor}+([dmu]*)")
|
||||
if (_${_PYTHON_PREFIX}_INCLUDE_DIR MATCHES "python${version_major}\\.${version_minor}+([dmu]*)")
|
||||
set (abi "${CMAKE_MATCH_1}")
|
||||
else()
|
||||
set (abi "")
|
||||
|
||||
Reference in New Issue
Block a user