From 2ee1c86d71bee5ddca2c8795b4d343e31d28df99 Mon Sep 17 00:00:00 2001 From: Mathieu Bridon Date: Thu, 9 Aug 2018 10:27:26 +0200 Subject: meson: Build with Python 3 Now that all the build scripts are compatible with both Python 2 and 3, we can flip the switch and tell Meson to use the latter. Since Meson already depends on Python 3 anyway, this means we don't need two different Python stacks to build Mesa. Signed-off-by: Mathieu Bridon Reviewed-by: Eric Engestrom Reviewed-by: Dylan Baker --- src/compiler/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/compiler/meson.build') diff --git a/src/compiler/meson.build b/src/compiler/meson.build index 60b633832d4..0f8f3c12966 100644 --- a/src/compiler/meson.build +++ b/src/compiler/meson.build @@ -40,7 +40,7 @@ ir_expression_operation_h = custom_target( 'ir_expression_operation.h', input : 'glsl/ir_expression_operation.py', output : 'ir_expression_operation.h', - command : [prog_python2, '@INPUT@', 'enum'], + command : [prog_python, '@INPUT@', 'enum'], capture : true, ) -- cgit v1.2.3