summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin Jansa <Martin.Jansa@gmail.com>2021-09-20 17:11:57 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2021-09-21 23:44:08 +0100
commit689097cdf3e95deeb876c8b6ddfbe702dc32cb09 (patch)
treebbe0ce66936a0f5a8dd74f7454d2d6bc41287d90
parent50c1efdeb9bf2faf3eb508243d789d02cd11028d (diff)
downloadpoky-689097cdf3e95deeb876c8b6ddfbe702dc32cb09.tar.gz
qemu-native: add direct dependency on ninja-native and meson-native
* with many native dependencies excluded in: layer.conf: Extend recipes not to install without explict dependencies this was now failing with: ERROR: Cannot find Ninja and after adding ninja-native to DEPENDS it was failing due to missing meson as well: /OE/build/oe-core/tmp-glibc/work/x86_64-linux/qemu-native/6.0.0-r0/qemu-6.0.0/configure: 6415: --version: not found /OE/build/oe-core/tmp-glibc/work/x86_64-linux/qemu-native/6.0.0-r0/qemu-6.0.0/configure: 6418: setup: not found (From OE-Core rev: 7b2dfb49105e6465c5436869863e6a9720c60bbd) Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--meta/recipes-devtools/qemu/qemu-native_6.0.0.bb2
-rw-r--r--meta/recipes-devtools/qemu/qemu-system-native_6.0.0.bb2
2 files changed, 2 insertions, 2 deletions
diff --git a/meta/recipes-devtools/qemu/qemu-native_6.0.0.bb b/meta/recipes-devtools/qemu/qemu-native_6.0.0.bb
index d9ef155569..a94dc0b61e 100644
--- a/meta/recipes-devtools/qemu/qemu-native_6.0.0.bb
+++ b/meta/recipes-devtools/qemu/qemu-native_6.0.0.bb
@@ -1,6 +1,6 @@
1BPN = "qemu" 1BPN = "qemu"
2 2
3DEPENDS = "glib-2.0-native zlib-native" 3DEPENDS = "glib-2.0-native zlib-native ninja-native meson-native"
4 4
5require qemu-native.inc 5require qemu-native.inc
6 6
diff --git a/meta/recipes-devtools/qemu/qemu-system-native_6.0.0.bb b/meta/recipes-devtools/qemu/qemu-system-native_6.0.0.bb
index 1c12eb7cf2..f98c0b7722 100644
--- a/meta/recipes-devtools/qemu/qemu-system-native_6.0.0.bb
+++ b/meta/recipes-devtools/qemu/qemu-system-native_6.0.0.bb
@@ -7,7 +7,7 @@ require qemu-native.inc
7# As some of the files installed by qemu-native and qemu-system-native 7# As some of the files installed by qemu-native and qemu-system-native
8# are the same, we depend on qemu-native to get the full installation set 8# are the same, we depend on qemu-native to get the full installation set
9# and avoid file clashes 9# and avoid file clashes
10DEPENDS = "glib-2.0-native zlib-native pixman-native qemu-native bison-native" 10DEPENDS = "glib-2.0-native zlib-native pixman-native qemu-native bison-native meson-native ninja-native"
11 11
12EXTRA_OECONF:append = " --target-list=${@get_qemu_system_target_list(d)}" 12EXTRA_OECONF:append = " --target-list=${@get_qemu_system_target_list(d)}"
13 13