diff options
author | Khem Raj <raj.khem@gmail.com> | 2019-02-25 15:17:42 -0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-02-28 13:21:54 +0000 |
commit | c25f139421d3934006f64cb66a45c44d381724ad (patch) | |
tree | 0a946dc2cebed4f9a55993ce6272169d767ea60d /meta/recipes-graphics/mesa | |
parent | 61bcdacada6cc97a0ab70912602a815a041de0d7 (diff) | |
download | poky-c25f139421d3934006f64cb66a45c44d381724ad.tar.gz |
mesa-gl: Set PACKAGECONFIG for target
mesa.inc uses PACKAGECONFIG_class-target override to setup default
packageconfigs, which means that when we build mesa-gl for target then
it does no honor the ??= setting we have in mesa-gl recipe, and ends up
compiling egl, gles2 as well, which is not intended.
(From OE-Core rev: e6e6254eb8bee12f830b3848b8e96aafcf1ca918)
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-graphics/mesa')
-rw-r--r-- | meta/recipes-graphics/mesa/mesa-gl_18.3.4.bb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/meta/recipes-graphics/mesa/mesa-gl_18.3.4.bb b/meta/recipes-graphics/mesa/mesa-gl_18.3.4.bb index 73267eb4f0..d4b1c1c454 100644 --- a/meta/recipes-graphics/mesa/mesa-gl_18.3.4.bb +++ b/meta/recipes-graphics/mesa/mesa-gl_18.3.4.bb | |||
@@ -7,3 +7,4 @@ PROVIDES = "virtual/libgl virtual/mesa" | |||
7 | S = "${WORKDIR}/mesa-${PV}" | 7 | S = "${WORKDIR}/mesa-${PV}" |
8 | 8 | ||
9 | PACKAGECONFIG ??= "opengl dri ${@bb.utils.filter('DISTRO_FEATURES', 'x11', d)}" | 9 | PACKAGECONFIG ??= "opengl dri ${@bb.utils.filter('DISTRO_FEATURES', 'x11', d)}" |
10 | PACKAGECONFIG_class-target = "opengl dri ${@bb.utils.filter('DISTRO_FEATURES', 'x11', d)}" | ||