Revert "meson: Fix build break on f43, gentoo, etc"

This reverts commit 4fc7a26aed.

This is no longer needed after the previous commits in this MR.

Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/40514>
This commit is contained in:
Eric Engestrom 2026-03-18 19:55:06 +01:00 committed by Marge Bot
parent dbbc7800c5
commit 276c8b721b

View file

@ -1036,8 +1036,8 @@ endif
# - On Windows, a venv has no versioned aliased to 'python'.
# - On RHEL 9, python3 is 3.9, so we must use python3.12.
python_version_req = '>= 3.10'
python_exec_list = ['python3', 'python3.16', 'python3.15', 'python3.14', 'python3.13',
'python3.12', 'python3.11', 'python3.10', 'python']
python_exec_list = ['python3.16', 'python3.15', 'python3.14', 'python3.13',
'python3.12', 'python3.11', 'python3.10', 'python3', 'python']
foreach p : python_exec_list
prog_python = find_program(p, required : false, version : python_version_req)