]> git.ipfire.org Git - thirdparty/openembedded/openembedded-core-contrib.git/blob
8230ba588b576c1c01ab09393bfe75369c281f06
[thirdparty/openembedded/openembedded-core-contrib.git] /
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
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 ---
13 meson.build | 2 +-
14 1 file changed, 1 insertion(+), 1 deletion(-)
15
16 diff --git a/meson.build b/meson.build
17 index 13d95bb..b241eb2 100644
18 --- a/meson.build
19 +++ b/meson.build
20 @@ -64,7 +64,7 @@ flags = [
21
22 add_project_arguments(cc.get_supported_arguments(flags), language : 'c')
23
24 -prog_python = import('python').find_installation('python3')
25 +prog_python = 'python3'
26
27 libdrm_dep = dependency('libdrm', version : '>=2.4.50')
28 thread_dep = dependency('threads')