From 7a6bea906ea113704b7b339f8cb019f6e92c583f Mon Sep 17 00:00:00 2001 From: Stephen Lawrence Date: Fri, 28 Jul 2017 17:22:25 +0100 Subject: wayland-kms: fix missing wayland-scanner dependency wayland-kms do_configure task fails with the error: | checking for wayland-scanner... no | configure: error: Please install wayland-scanner. wayland-scanner is provided by wayland-native. wayland-kms has a DEPENDS on wayland, which in turn DEPENDS on wayland-native. However this does not populate the wayland-scanner binary in the wayland-kms recipe sysroot. Achieve that by directly adding wayland-native to the wayland-kms DEPENDS. Signed-off-by: Stephen Lawrence --- meta-rcar-gen3/recipes-graphics/wayland/wayland-kms_1.6.0.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta-rcar-gen3/recipes-graphics/wayland/wayland-kms_1.6.0.bb b/meta-rcar-gen3/recipes-graphics/wayland/wayland-kms_1.6.0.bb index 0346162..e50cac0 100644 --- a/meta-rcar-gen3/recipes-graphics/wayland/wayland-kms_1.6.0.bb +++ b/meta-rcar-gen3/recipes-graphics/wayland/wayland-kms_1.6.0.bb @@ -11,7 +11,7 @@ SRC_URI = "git://github.com/renesas-rcar/wayland-kms.git;branch=rcar-gen3" COMPATIBLE_MACHINE = "(r8a7795|r8a7796)" S = "${WORKDIR}/git" -DEPENDS = "libdrm wayland gles-user-module" +DEPENDS = "libdrm wayland gles-user-module wayland-native" inherit autotools pkgconfig -- cgit 1.2.3-korg