summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRanjitsinh Rathod <ranjitsinh.rathod@kpit.com>2023-05-22 14:34:05 +0530
committerRichard Purdie <richard.purdie@linuxfoundation.org>2023-05-25 10:29:08 +0100
commit0d424494b3655e7f7a892a0001b2c063105ba652 (patch)
treeb425a6eeaa303578d720c115ddd1a0c6386a0799
parenta43a4ea6864e68c115cb7e615d6a7a740248838c (diff)
downloadpoky-0d424494b3655e7f7a892a0001b2c063105ba652.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: 63f338255000874c62bf01ccc11f2c100014c3d9) 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>
-rw-r--r--meta/recipes-graphics/kmscube/kmscube_git.bb3
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 b2c10e09fb..67ac97b963 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."
6HOMEPAGE = "https://cgit.freedesktop.org/mesa/kmscube/" 6HOMEPAGE = "https://cgit.freedesktop.org/mesa/kmscube/"
7LICENSE = "MIT" 7LICENSE = "MIT"
8SECTION = "graphics" 8SECTION = "graphics"
9DEPENDS = "virtual/libgles3 virtual/libgles2 virtual/egl libdrm" 9DEPENDS = "virtual/libgles3 virtual/libgles2 virtual/egl libdrm virtual/libgbm"
10 10
11LIC_FILES_CHKSUM = "file://kmscube.c;beginline=1;endline=23;md5=8b309d4ee67b7315ff7381270dd631fb" 11LIC_FILES_CHKSUM = "file://kmscube.c;beginline=1;endline=23;md5=8b309d4ee67b7315ff7381270dd631fb"
12 12
@@ -19,7 +19,6 @@ S = "${WORKDIR}/git"
19inherit meson pkgconfig features_check 19inherit meson pkgconfig features_check
20 20
21REQUIRED_DISTRO_FEATURES = "opengl" 21REQUIRED_DISTRO_FEATURES = "opengl"
22DEPENDS = "virtual/libgbm"
23 22
24PACKAGECONFIG ??= "" 23PACKAGECONFIG ??= ""
25PACKAGECONFIG[gstreamer] = "-Dgstreamer=enabled,-Dgstreamer=disabled,gstreamer1.0 gstreamer1.0-plugins-base" 24PACKAGECONFIG[gstreamer] = "-Dgstreamer=enabled,-Dgstreamer=disabled,gstreamer1.0 gstreamer1.0-plugins-base"