diff mbox series

dev-manual: fix old override syntax

Message ID 20230207121901.911003-1-u.oelmann@pengutronix.de
State New
Headers show
Series dev-manual: fix old override syntax | expand

Commit Message

Ulrich Ölmann Feb. 7, 2023, 12:19 p.m. UTC
Signed-off-by: Ulrich Ölmann <u.oelmann@pengutronix.de>
---
 documentation/dev-manual/prebuilt-libraries.rst | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Comments

Quentin Schulz Feb. 7, 2023, 1:34 p.m. UTC | #1
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
Michael Opdenacker Feb. 7, 2023, 5:53 p.m. UTC | #2
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 mbox series

Patch

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