From 689097cdf3e95deeb876c8b6ddfbe702dc32cb09 Mon Sep 17 00:00:00 2001 From: Martin Jansa Date: Mon, 20 Sep 2021 17:11:57 +0200 Subject: 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 Signed-off-by: Richard Purdie --- meta/recipes-devtools/qemu/qemu-native_6.0.0.bb | 2 +- meta/recipes-devtools/qemu/qemu-system-native_6.0.0.bb | 2 +- 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 @@ BPN = "qemu" -DEPENDS = "glib-2.0-native zlib-native" +DEPENDS = "glib-2.0-native zlib-native ninja-native meson-native" require qemu-native.inc 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 # As some of the files installed by qemu-native and qemu-system-native # are the same, we depend on qemu-native to get the full installation set # and avoid file clashes -DEPENDS = "glib-2.0-native zlib-native pixman-native qemu-native bison-native" +DEPENDS = "glib-2.0-native zlib-native pixman-native qemu-native bison-native meson-native ninja-native" EXTRA_OECONF:append = " --target-list=${@get_qemu_system_target_list(d)}" -- cgit v1.2.3-54-g00ecf