diff options
author | Ulrich Ölmann <u.oelmann@pengutronix.de> | 2023-02-07 13:19:01 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2023-02-10 11:03:36 +0000 |
commit | ba0be66d393e5fb1b2fbf7b6846ae56ad5a1770c (patch) | |
tree | c22d2a709a279c160ef205152f95798e9e8e13f4 /documentation/dev-manual/prebuilt-libraries.rst | |
parent | d792b4f7210a6b9fc444496edaee0ffc15a7d69d (diff) | |
download | poky-ba0be66d393e5fb1b2fbf7b6846ae56ad5a1770c.tar.gz |
dev-manual: fix old override syntax
(From yocto-docs rev: d578d6e09466dee26d30ccef5fdb3ce9b0d350f7)
Signed-off-by: Ulrich Ölmann <u.oelmann@pengutronix.de>
Reviewed-by: Quentin Schulz <foss+yocto@0leil.net>
Reviewed-by: Michael Opdenacker <michael.opdenacker@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'documentation/dev-manual/prebuilt-libraries.rst')
-rw-r--r-- | documentation/dev-manual/prebuilt-libraries.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/documentation/dev-manual/prebuilt-libraries.rst b/documentation/dev-manual/prebuilt-libraries.rst index ca43463820..b80a844e93 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``:: | |||
153 | 153 | ||
154 | SOLIBS = ".so.*" | 154 | SOLIBS = ".so.*" |
155 | SOLIBSDEV = ".so" | 155 | SOLIBSDEV = ".so" |
156 | FILES_${PN} = "... ${libdir}/lib*${SOLIBS} ..." | 156 | FILES:${PN} = "... ${libdir}/lib*${SOLIBS} ..." |
157 | FILES_SOLIBSDEV ?= "... ${libdir}/lib*${SOLIBSDEV} ..." | 157 | FILES_SOLIBSDEV ?= "... ${libdir}/lib*${SOLIBSDEV} ..." |
158 | FILES_${PN}-dev = "... ${FILES_SOLIBSDEV} ..." | 158 | FILES:${PN}-dev = "... ${FILES_SOLIBSDEV} ..." |
159 | 159 | ||
160 | :term:`SOLIBS` defines a pattern that matches real shared object libraries. | 160 | :term:`SOLIBS` defines a pattern that matches real shared object libraries. |
161 | :term:`SOLIBSDEV` matches the development form (unversioned symlink). These two | 161 | :term:`SOLIBSDEV` matches the development form (unversioned symlink). These two |