diff options
author | Stephen Lawrence <stephen.lawrence@renesas.com> | 2017-07-28 17:22:25 +0100 |
---|---|---|
committer | Ronan Le Martret <ronan.lemartret@iot.bzh> | 2017-09-15 10:20:15 +0200 |
commit | 7a6bea906ea113704b7b339f8cb019f6e92c583f (patch) | |
tree | 89dccd7823864c27be97df1508e5b93308f74203 /meta-rcar-gen3/recipes-graphics | |
parent | fcf1d3746e6e6443aa04eef017d8b08615c55134 (diff) |
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 <stephen.lawrence@renesas.com>
Diffstat (limited to 'meta-rcar-gen3/recipes-graphics')
-rw-r--r-- | meta-rcar-gen3/recipes-graphics/wayland/wayland-kms_1.6.0.bb | 2 |
1 files changed, 1 insertions, 1 deletions
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 |