Message ID | 27fe44b9-6e5f-9fed-9878-de50ffa72910@crashcourse.ca |
---|---|
State | Under Review |
Headers | show |
Series | dev-manual: fix rendering of ${PN} | expand |
Hi Robert, On 6/24/25 10:41 AM, Robert P. J. Day via lists.yoctoproject.org wrote: > > Current markup generates italic, not monospaced. > Reviewed-by: Quentin Schulz <quentin.schulz@cherry.de> Thanks! Quentin
diff --git a/documentation/dev-manual/prebuilt-libraries.rst b/documentation/dev-manual/prebuilt-libraries.rst index a05f39ca1..e5ebddfdc 100644 --- a/documentation/dev-manual/prebuilt-libraries.rst +++ b/documentation/dev-manual/prebuilt-libraries.rst @@ -170,7 +170,7 @@ as follows:: The modifications cause the ``.so`` file to be the real library and unset :term:`FILES_SOLIBSDEV` so that no libraries get packaged into ``${PN}-dev``. The changes are required because unless :term:`PACKAGES` is changed, -``${PN}-dev`` collects files before `${PN}`. ``${PN}-dev`` must not collect any of +``${PN}-dev`` collects files before ``${PN}``. ``${PN}-dev`` must not collect any of the files you want in ``${PN}``. Finally, loadable modules, essentially unversioned libraries that are linked
Current markup generates italic, not monospaced. Signed-off-by: Robert P. J. Day <rpjday@crashcourse.ca> ---