From 9595b23a45a6bcb7ee784e2c38085a8ea2e4620a Mon Sep 17 00:00:00 2001 From: Eric Engestrom Date: Sun, 2 Feb 2020 15:29:08 +0000 Subject: [PATCH] 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: --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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', -- 2.30.2