]> git.ipfire.org Git - thirdparty/openembedded/openembedded-core-contrib.git/blob
0fd1d511d6bc43a5a08d297060c21f449a49952a
[thirdparty/openembedded/openembedded-core-contrib.git] /
1 From 63788c63ed39a3ce9994f4315d8997e1a9300d4d 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
5
6 This avoids a dependency on target python (due to meson probing
7 its configuration).
8
9 Upstream-Status: Inappropriate [oe-core specific]
10 Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
11 ---
12 meson.build | 2 +-
13 1 file changed, 1 insertion(+), 1 deletion(-)
14
15 diff --git a/meson.build b/meson.build
16 index 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')