1 From dec8cca59124d7f8796b54902482ceb295a71b51 Mon Sep 17 00:00:00 2001
2 From: Alexander Kanavin <alex.kanavin@gmail.com>
3 Date: Mon, 6 Jan 2020 12:44:42 +0100
4 Subject: [PATCH] meson.build: use 'python3' directly for python
6 This avoids a dependency on target python (due to meson probing
9 Upstream-Status: Inappropriate [oe-core specific]
10 Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
14 1 file changed, 1 insertion(+), 1 deletion(-)
16 diff --git a/meson.build b/meson.build
17 index 9f91ff2f..2391f89d 100644
20 @@ -74,7 +74,7 @@ flags = [
22 add_project_arguments(cc.get_supported_arguments(flags), language : 'c')
24 -prog_python = import('python').find_installation('python3')
25 +prog_python = 'python3'
27 not_found = dependency('', required: false)
28 libdrm_dep = dependency('libdrm', version : '>=2.4.50', required: get_option('drm').enabled() or get_option('venus'))