Message ID | 20230207121901.911003-1-u.oelmann@pengutronix.de |
---|---|
State | Accepted |
Commit | d578d6e09466dee26d30ccef5fdb3ce9b0d350f7 |
Headers | show |
Series | dev-manual: fix old override syntax | expand |
Hi Ulrich, On 2/7/23 13:19, Ulrich Ölmann wrote: > Signed-off-by: Ulrich Ölmann <u.oelmann@pengutronix.de> Reviewed-by: Quentin Schulz <foss+yocto@0leil.net> Michael, please backport to kirkstone too. Thanks, Quentin
Ulrich, good catch, thanks for the patch! Quentin, thanks for the review. On 07.02.23 at 14:34, Quentin Schulz via lists.yoctoproject.org wrote: > Hi Ulrich, > > On 2/7/23 13:19, Ulrich Ölmann wrote: >> Signed-off-by: Ulrich Ölmann <u.oelmann@pengutronix.de> > > Reviewed-by: Quentin Schulz <foss+yocto@0leil.net> Merged into "master-next", thanks! > > Michael, please backport to kirkstone too. Sure, and langdale too. Cheers Michael.
diff --git a/documentation/dev-manual/prebuilt-libraries.rst b/documentation/dev-manual/prebuilt-libraries.rst index ca4346382008..b80a844e9372 100644 --- a/documentation/dev-manual/prebuilt-libraries.rst +++ b/documentation/dev-manual/prebuilt-libraries.rst @@ -153,9 +153,9 @@ default :term:`FILES` variables in ``bitbake.conf``:: SOLIBS = ".so.*" SOLIBSDEV = ".so" - FILES_${PN} = "... ${libdir}/lib*${SOLIBS} ..." + FILES:${PN} = "... ${libdir}/lib*${SOLIBS} ..." FILES_SOLIBSDEV ?= "... ${libdir}/lib*${SOLIBSDEV} ..." - FILES_${PN}-dev = "... ${FILES_SOLIBSDEV} ..." + FILES:${PN}-dev = "... ${FILES_SOLIBSDEV} ..." :term:`SOLIBS` defines a pattern that matches real shared object libraries. :term:`SOLIBSDEV` matches the development form (unversioned symlink). These two
Signed-off-by: Ulrich Ölmann <u.oelmann@pengutronix.de> --- documentation/dev-manual/prebuilt-libraries.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)