summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTom Hochstein <tom.hochstein@oss.nxp.com>2024-12-22 10:22:32 -0600
committerRichard Purdie <richard.purdie@linuxfoundation.org>2024-12-23 11:32:26 +0000
commitcfc82539996e226bade22aed66b1276028db005d (patch)
treeeaf3d4699693d88a0f8dc790a9522109fcc9163c
parent71ba9ad6e9c07d4921bda72916da15ae6479778b (diff)
downloadpoky-cfc82539996e226bade22aed66b1276028db005d.tar.gz
weston: Fix wayland-protocols dependency
An SDK build of weston fails: ``` Run-time dependency wayland-protocols found: NO (tried pkgconfig and cmake) ``` The file wayland-protocols.pc is missing in the SDK. This is traced to the upgrade of wayland-protocols to 1.38 [1], which re-enables the dev package, which moves wayland-protocols.pc to wayland-protocols-dev. [1] https://github.com/openembedded/openembedded-core/commit/5de187aee675a78fe59620a3fb64a5da5ae662aa (From OE-Core rev: 50608d9c8ac47234138056fa7bf3f92ffc876a19) Signed-off-by: Tom Hochstein <tom.hochstein@oss.nxp.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--meta/recipes-graphics/wayland/weston_14.0.1.bb2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-graphics/wayland/weston_14.0.1.bb b/meta/recipes-graphics/wayland/weston_14.0.1.bb
index 50749d7d15..4cb0ca4d5f 100644
--- a/meta/recipes-graphics/wayland/weston_14.0.1.bb
+++ b/meta/recipes-graphics/wayland/weston_14.0.1.bb
@@ -137,7 +137,7 @@ RDEPENDS:${PN}-xwayland += "xwayland"
137 137
138RDEPENDS:${PN} += "xkeyboard-config" 138RDEPENDS:${PN} += "xkeyboard-config"
139RRECOMMENDS:${PN} = "weston-init liberation-fonts" 139RRECOMMENDS:${PN} = "weston-init liberation-fonts"
140RRECOMMENDS:${PN}-dev += "wayland-protocols" 140RDEPENDS:${PN}-dev += "wayland-protocols-dev"
141 141
142USERADD_PACKAGES = "${PN}" 142USERADD_PACKAGES = "${PN}"
143GROUPADD_PARAM:${PN} = "--system weston-launch" 143GROUPADD_PARAM:${PN} = "--system weston-launch"