| Message ID | 20260810175703.3537601-1-ross.burton@arm.com |
|---|---|
| State | New |
| Headers | show |
| Series | systemd: promote dlopen "suggested" to RRECOMMENDS | expand |
diff --git a/meta/recipes-core/systemd/dlopen-deps.inc b/meta/recipes-core/systemd/dlopen-deps.inc index 82a2ccd389c..2d43f2dcb8e 100644 --- a/meta/recipes-core/systemd/dlopen-deps.inc +++ b/meta/recipes-core/systemd/dlopen-deps.inc @@ -45,7 +45,7 @@ python package_generate_dlopen_deps() { dep_map = { "required": "RDEPENDS", "recommended": "RRECOMMENDS", - "suggested": "RSUGGESTS" + "suggested": "RRECOMMENDS" } shlibs = oe.package.read_shlib_providers(d)
The dlopen'd libraries in systemd are annotated with required/ recommended/suggested, which we map to RDEPENDS/RRECOMMENDS/RSUGGESTS. However, no package managers actually install suggested libraries out of the box so the functionality wasn't enabled without further action. Promote the suggested dependencies to recommends so that they are installed by default: any libraries that are not desired on target can be avoided by using BAD_RECOMMENDATIONS. Signed-off-by: Ross Burton <ross.burton@arm.com> --- meta/recipes-core/systemd/dlopen-deps.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)