diff options
author | Ranjitsinh Rathod <ranjitsinh.rathod@kpit.com> | 2023-05-22 14:34:05 +0530 |
---|---|---|
committer | Steve Sakoman <steve@sakoman.com> | 2023-06-23 04:16:41 -1000 |
commit | da8512f9b0a35931a23831bf678fa60b5d10aded (patch) | |
tree | 2d6a7826b1fa5e34149f9dc3454f40ebfe6ca0dd | |
parent | 62257379ea259538fefea9d00819e0cd3503683c (diff) | |
download | poky-da8512f9b0a35931a23831bf678fa60b5d10aded.tar.gz |
kmscube: Correct DEPENDS to avoid overwrite
As part of the below commit, DEPENDS gets overwrite which is wrong
Link: https://git.yoctoproject.org/poky/commit/?id=bd947d3343dcd96e79fc8157f32a2a087cd710a7
So correct the DEPENDS varibales
(From OE-Core rev: 5dec509c33ce3d01fa1cd44408f0ef198dc4f6c0)
Signed-off-by: Ranjitsinh Rathod <ranjitsinh.rathod@kpit.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 63f338255000874c62bf01ccc11f2c100014c3d9)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
-rw-r--r-- | meta/recipes-graphics/kmscube/kmscube_git.bb | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/meta/recipes-graphics/kmscube/kmscube_git.bb b/meta/recipes-graphics/kmscube/kmscube_git.bb index 58ce26a3d5..98f110527e 100644 --- a/meta/recipes-graphics/kmscube/kmscube_git.bb +++ b/meta/recipes-graphics/kmscube/kmscube_git.bb | |||
@@ -6,7 +6,7 @@ OpenGL or OpenGL ES." | |||
6 | HOMEPAGE = "https://cgit.freedesktop.org/mesa/kmscube/" | 6 | HOMEPAGE = "https://cgit.freedesktop.org/mesa/kmscube/" |
7 | LICENSE = "MIT" | 7 | LICENSE = "MIT" |
8 | SECTION = "graphics" | 8 | SECTION = "graphics" |
9 | DEPENDS = "virtual/libgles3 virtual/libgles2 virtual/egl libdrm" | 9 | DEPENDS = "virtual/libgles3 virtual/libgles2 virtual/egl libdrm virtual/libgbm" |
10 | 10 | ||
11 | LIC_FILES_CHKSUM = "file://kmscube.c;beginline=1;endline=23;md5=8b309d4ee67b7315ff7381270dd631fb" | 11 | LIC_FILES_CHKSUM = "file://kmscube.c;beginline=1;endline=23;md5=8b309d4ee67b7315ff7381270dd631fb" |
12 | 12 | ||
@@ -20,7 +20,6 @@ S = "${WORKDIR}/git" | |||
20 | inherit meson pkgconfig features_check | 20 | inherit meson pkgconfig features_check |
21 | 21 | ||
22 | REQUIRED_DISTRO_FEATURES = "opengl" | 22 | REQUIRED_DISTRO_FEATURES = "opengl" |
23 | DEPENDS = "virtual/libgbm" | ||
24 | 23 | ||
25 | PACKAGECONFIG ??= "" | 24 | PACKAGECONFIG ??= "" |
26 | PACKAGECONFIG[gstreamer] = "-Dgstreamer=enabled,-Dgstreamer=disabled,gstreamer1.0 gstreamer1.0-plugins-base" | 25 | PACKAGECONFIG[gstreamer] = "-Dgstreamer=enabled,-Dgstreamer=disabled,gstreamer1.0 gstreamer1.0-plugins-base" |