]> code.ossystems Code Review - openembedded-core.git/commitdiff
qemu-native: add direct dependency on ninja-native and meson-native
authorMartin Jansa <Martin.Jansa@gmail.com>
Mon, 20 Sep 2021 15:11:57 +0000 (17:11 +0200)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Tue, 21 Sep 2021 22:44:04 +0000 (23:44 +0100)
* 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

Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
meta/recipes-devtools/qemu/qemu-native_6.0.0.bb
meta/recipes-devtools/qemu/qemu-system-native_6.0.0.bb

index d9ef155569cb6faa9ac4e6321de42bea71f9d19c..a94dc0b61ebafcda1a5d87bbba04f5f9f599592d 100644 (file)
@@ -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
 
index 1c12eb7cf282d66b83e614f251bb152f80644842..f98c0b77228e6aad9805d5bec5efcc2a341efd02 100644 (file)
@@ -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)}"