1From 9677f66a240a0513623aa26b47233b49193d0402 Mon Sep 17 00:00:00 2001
2From: Alexander Kanavin <alex.kanavin@gmail.com>
3Date: Mon, 6 Jan 2020 12:44:42 +0100
4Subject: [PATCH] meson.build: use 'python3' directly for python
5
6This avoids a dependency on target python (due to meson probing
7its configuration).
8
9Upstream-Status: Inappropriate [oe-core specific]
10Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
11---
12 meson.build | 2 +-
13 1 file changed, 1 insertion(+), 1 deletion(-)
14
15diff --git a/meson.build b/meson.build
16index 10be099e..3bb6eec7 100644
17--- a/meson.build
18+++ b/meson.build
19@@ -77,7 +77,7 @@ flags = [
20
21 add_project_arguments(cc.get_supported_arguments(flags), language : 'c')
22
23-prog_python = import('python').find_installation('python3')
24+prog_python = 'python3'
25
26 not_found = dependency('', required: false)
27 gbm_dep = not_found
28