diff options
author | Hugo Hromic <hhromic@gmail.com> | 2018-05-11 15:54:01 +0100 |
---|---|---|
committer | Andrei Gherzan <andrei@gherzan.com> | 2018-05-14 10:33:19 +0100 |
commit | de8912cbcb06b221fb4617f3042e06b68f74c814 (patch) | |
tree | 9447e13b4b68eb277a02972dba0a0bf4bde21508 | |
parent | 5492c68403fdd6fe6edd95e44532dcfd116cc832 (diff) | |
download | meta-raspberrypi-de8912cbcb06b221fb4617f3042e06b68f74c814.tar.gz |
wayland: do not install libwayland-egl from wayland
Wayland was updated recently in Poky, and now includes `libwayland-egl`:
commit 8097bf7012a0d97d3b8b48eceb5dc20cc4ae7ca9
Author: Denys Dmytriyenko <denys@ti.com>
Date: Tue Apr 10 15:06:09 2018 -0400
wayland: upgrade to 1.15.0
Official announcement:
https://lists.freedesktop.org/archives/wayland-devel/2018-April/037767.html
| libwayland-egl is now part of libwayland, and will presumably be removed
| from mesa in the not too distant future.
Update mesa recipe by removing corresponding libwayland-egl entries.
(From OE-Core rev: 6e5952fcfc13ff4b63c9376bd41a1dbba957f425)
Signed-off-by: Denys Dmytriyenko <denys@ti.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
However, the `userland` ships its own version of the library (see issue #243).
Until further testing, for now discard the version in `wayland` in favour of the version in `userland`.
Signed-off-by: Hugo Hromic <hhromic@gmail.com>
-rw-r--r-- | recipes-graphics/wayland/wayland_%.bbappend | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/recipes-graphics/wayland/wayland_%.bbappend b/recipes-graphics/wayland/wayland_%.bbappend new file mode 100644 index 0000000..ee2676a --- /dev/null +++ b/recipes-graphics/wayland/wayland_%.bbappend | |||
@@ -0,0 +1,6 @@ | |||
1 | # remove provided `libwayland-egl` library in favour of the version in `userland` until fully tested | ||
2 | |||
3 | do_install_append_rpi () { | ||
4 | rm -f ${D}${libdir}/libwayland-egl* | ||
5 | rm -f ${D}${libdir}/pkgconfig/wayland-egl.pc | ||
6 | } | ||