1 From c853c9e5c44f1b23a15a7ba629ee02f7d8ec23a0 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 13d95bb..b241eb2 100644
20 @@ -64,7 +64,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 libdrm_dep = dependency('libdrm', version : '>=2.4.50')
28 thread_dep = dependency('threads')