From: Eric Engestrom Date: Sun, 2 Feb 2020 15:29:08 +0000 (+0000) Subject: meson: don't bother trying `python2` X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=9595b23a45a6bcb7ee784e2c38085a8ea2e4620a;p=mesa.git meson: don't bother trying `python2` Meson requires `python3`, so we know it's there, no need to fall back to python2. Signed-off-by: Eric Engestrom Reviewed-by: Dylan Baker Tested-by: Marge Bot Part-of: --- diff --git a/meson.build b/meson.build index c48945b3c48..9d9f3031e90 100644 --- a/meson.build +++ b/meson.build @@ -22,7 +22,7 @@ project( 'mesa', ['c', 'cpp'], version : run_command( - [find_program('python', 'python2', 'python3'), 'bin/meson_get_version.py'] + [find_program('python', 'python3'), 'bin/meson_get_version.py'] ).stdout(), license : 'MIT', meson_version : '>= 0.46',