diff options
author | Stephen Lawrence <stephen.lawrence@renesas.com> | 2017-07-28 17:22:25 +0100 |
---|---|---|
committer | Thuy Tran <thuy.tran.xh@rvc.renesas.com> | 2018-01-30 10:00:50 +0700 |
commit | 6bafe741c94ca9ef335ec175ed2c85c624a49bc3 (patch) | |
tree | c904c5996e7fe36d7c1c8260e7e65a1ef17dd419 /meta-rcar-gen3/recipes-graphics/wayland/wayland-kms_1.6.0.bb | |
parent | a2881797204326eaf7c98ce2c60090385809de8f (diff) |
rcar-gen3: 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>
Signed-off-by: Takamitsu Honda <takamitsu.honda.pv@renesas.com>
Diffstat (limited to 'meta-rcar-gen3/recipes-graphics/wayland/wayland-kms_1.6.0.bb')
-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 76e8bfc..9fc571a 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|r8a77965)" S = "${WORKDIR}/git" -DEPENDS = "libdrm wayland gles-user-module" +DEPENDS = "libdrm wayland gles-user-module wayland-native" inherit autotools pkgconfig |