1From 63788c63ed39a3ce9994f4315d8997e1a9300d4d 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 682d7c8..19d2eae 100644 17--- a/meson.build 18+++ b/meson.build 19@@ -60,7 +60,7 @@ foreach w : warnings 20 endif 21 endforeach 22 23-prog_python = import('python').find_installation('python3') 24+prog_python = 'python3' 25 26 libdrm_dep = dependency('libdrm', version : '>=2.4.50') 27 thread_dep = dependency('threads') 28