]> git.ipfire.org Git - thirdparty/openembedded/openembedded-core-contrib.git/blob
3e124959701a70f8a278aac9a066c3e6940965b5
[thirdparty/openembedded/openembedded-core-contrib.git] /
1 From dec8cca59124d7f8796b54902482ceb295a71b51 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 9f91ff2f..2391f89d 100644
18 --- a/meson.build
19 +++ b/meson.build
20 @@ -74,7 +74,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 not_found = dependency('', required: false)
28 libdrm_dep = dependency('libdrm', version : '>=2.4.50', required: get_option('drm').enabled() or get_option('venus'))