diff options
author | Thuy Tran <thuy.tran.xh@renesas.com> | 2018-05-22 10:15:39 +0700 |
---|---|---|
committer | Thuy Tran <thuy.tran.xh@renesas.com> | 2019-02-28 09:43:53 +0700 |
commit | ebec505a4b8ad25f3345a0a74f62f427d19d86a9 (patch) | |
tree | bb1505dd3226014f034bb9fe5df49068e43f4577 /meta-rcar-gen3/recipes-graphics | |
parent | 19126de3c9770f592b78560ee5f1a290308c6279 (diff) |
rcar-gen3: mesa: Remove corresponding libwayland-egl entries
In YP2.6, wayland was upgraded to 1.15.0.
From Wayland 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.
This commit updates mesa recipe to remove libwayland-egl entries.
Signed-off-by: Thuy Tran <thuy.tran.xh@renesas.com>
Signed-off-by: Takamitsu Honda <takamitsu.honda.pv@renesas.com>
Diffstat (limited to 'meta-rcar-gen3/recipes-graphics')
-rw-r--r-- | meta-rcar-gen3/recipes-graphics/mesa/mesa-wayland.inc | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/meta-rcar-gen3/recipes-graphics/mesa/mesa-wayland.inc b/meta-rcar-gen3/recipes-graphics/mesa/mesa-wayland.inc index 55b8c15..0aa77e0 100644 --- a/meta-rcar-gen3/recipes-graphics/mesa/mesa-wayland.inc +++ b/meta-rcar-gen3/recipes-graphics/mesa/mesa-wayland.inc @@ -11,8 +11,8 @@ PACKAGES_remove = " \ libegl-mesa-dev libegl-mesa \ libegl-dev libegl \ libgles2-mesa libgles2-mesa-dev \ + libwayland-egl libwayland-egl-dev \ " -INSTALLED_HEADER = "src/egl/wayland/wayland-egl/wayland-egl-priv.h" do_install_append() { # Remove libegl-mesa modules and headers @@ -21,13 +21,4 @@ do_install_append() { rm -f ${D}/${libdir}/pkgconfig/egl.pc rm -rf ${D}/${includedir}/EGL rm -rf ${D}/${includedir}/KHR - - # install required header for wayland - install -d ${D}/usr/include - install -m 644 ${S}/${INSTALLED_HEADER} ${D}/usr/include/ } - -FILES_libwayland-egl-dev += " \ - /usr/include \ - /usr/include/*.h \ -" |