Skip to content

Commit 5570ac5

Browse files
committed
build: prefer python3 over python
1 parent 7bd146f commit 5570ac5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cmake/render_manpage.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ function(add_manpage_source markdown)
2424
set(_multiValueArgs)
2525
cmake_parse_arguments(_MANPAGE "${_options}" "${_oneValueArgs}" "${_multiValueArgs}" ${ARGN})
2626

27-
find_program(_PYTHON_EXE python python3)
27+
find_program(_PYTHON_EXE python3 python)
2828
if(NOT _PYTHON_EXE)
2929
find_package(Python3 REQUIRED)
3030
set(_PYTHON_EXE "${Python3_EXECUTABLE}")

0 commit comments

Comments
 (0)