From 8545287b86a05bb3ffcc914cdf6c2706094fbf68 Mon Sep 17 00:00:00 2001 From: "Robert P. J. Day" Date: Thu, 11 Jun 2026 07:39:34 -0400 Subject: [PATCH] dev-manual: fully define SOLIBS-related variables in bitbake.conf The current (abridged) SOLIBS-related variables were not included in their entirety so add the missing content. (From yocto-docs rev: 9ff28bf8ef2c1d184b1e7b00287749b54f006734) Signed-off-by: Robert P. J. Day Signed-off-by: Antonin Godard (cherry picked from commit 6098e0887161ffda87e62dd460702197269d5982) Signed-off-by: Antonin Godard Signed-off-by: Paul Barker --- documentation/dev-manual/prebuilt-libraries.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/documentation/dev-manual/prebuilt-libraries.rst b/documentation/dev-manual/prebuilt-libraries.rst index a05f39ca1e..60c37490bd 100644 --- a/documentation/dev-manual/prebuilt-libraries.rst +++ b/documentation/dev-manual/prebuilt-libraries.rst @@ -153,8 +153,8 @@ default :term:`FILES` variables in ``bitbake.conf`` are:: SOLIBS = ".so.*" SOLIBSDEV = ".so" - FILES:${PN} = "... ${libdir}/lib*${SOLIBS} ..." - FILES_SOLIBSDEV ?= "... ${libdir}/lib*${SOLIBSDEV} ..." + FILES:${PN} = "... ${libdir}/lib*${SOLIBS} ... ${base_libdir}/*${SOLIBS} ..." + FILES_SOLIBSDEV ?= "${base_libdir}/lib*${SOLIBSDEV} ${libdir}/lib*${SOLIBSDEV}" FILES:${PN}-dev = "... ${FILES_SOLIBSDEV} ..." :term:`SOLIBS` defines a pattern that matches real shared object libraries.