From: Tom Hochstein Date: Sun, 22 Dec 2024 16:22:32 +0000 (-0600) Subject: weston: Fix wayland-protocols dependency X-Git-Tag: yocto-5.2~934 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=50608d9c8ac47234138056fa7bf3f92ffc876a19;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git 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 Signed-off-by: Tom Hochstein Signed-off-by: Richard Purdie --- diff --git a/meta/recipes-graphics/wayland/weston_14.0.1.bb b/meta/recipes-graphics/wayland/weston_14.0.1.bb index 50749d7d153..4cb0ca4d5fe 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" RDEPENDS:${PN} += "xkeyboard-config" RRECOMMENDS:${PN} = "weston-init liberation-fonts" -RRECOMMENDS:${PN}-dev += "wayland-protocols" +RDEPENDS:${PN}-dev += "wayland-protocols-dev" USERADD_PACKAGES = "${PN}" GROUPADD_PARAM:${PN} = "--system weston-launch"