summaryrefslogtreecommitdiffstats
path: root/documentation/sdk-manual
diff options
context:
space:
mode:
authorMichael Opdenacker <michael.opdenacker@bootlin.com>2021-08-04 20:20:40 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2021-08-14 12:04:23 +0100
commit134da15e223097d77ae2b357360fc079d3402cb8 (patch)
treef0917ab5ab1fdbf81417d72002abbfad1fc89b5f /documentation/sdk-manual
parent956056e647e21a644908d761f072a00ea42a94f9 (diff)
downloadpoky-134da15e223097d77ae2b357360fc079d3402cb8.tar.gz
sdk-manual: overrides syntax updates
Updated with openembedded-core/scripts/contrib/convert-overrides.py (From yocto-docs rev: 39cf6b2eb063815a3e2bf7a71ffd1fd6351cc594) Signed-off-by: Michael Opdenacker <michael.opdenacker@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'documentation/sdk-manual')
-rw-r--r--documentation/sdk-manual/appendix-customizing-standard.rst2
-rw-r--r--documentation/sdk-manual/appendix-obtain.rst2
-rw-r--r--documentation/sdk-manual/extensible.rst2
3 files changed, 3 insertions, 3 deletions
diff --git a/documentation/sdk-manual/appendix-customizing-standard.rst b/documentation/sdk-manual/appendix-customizing-standard.rst
index 9bc70cf55c..c619c15e46 100644
--- a/documentation/sdk-manual/appendix-customizing-standard.rst
+++ b/documentation/sdk-manual/appendix-customizing-standard.rst
@@ -29,6 +29,6 @@ You can include API documentation as well as any other documentation
29provided by recipes with the standard SDK by adding "api-documentation" 29provided by recipes with the standard SDK by adding "api-documentation"
30to the 30to the
31:term:`DISTRO_FEATURES` 31:term:`DISTRO_FEATURES`
32variable: DISTRO_FEATURES_append = " api-documentation" Setting this 32variable: DISTRO_FEATURES:append = " api-documentation" Setting this
33variable as shown here causes the OpenEmbedded build system to build the 33variable as shown here causes the OpenEmbedded build system to build the
34documentation and then include it in the standard SDK. 34documentation and then include it in the standard SDK.
diff --git a/documentation/sdk-manual/appendix-obtain.rst b/documentation/sdk-manual/appendix-obtain.rst
index fc6b8b9d5c..841abac5aa 100644
--- a/documentation/sdk-manual/appendix-obtain.rst
+++ b/documentation/sdk-manual/appendix-obtain.rst
@@ -163,7 +163,7 @@ build the SDK installer. Follow these steps:
163 SDK installer. Doing so ensures that the eventual SDK 163 SDK installer. Doing so ensures that the eventual SDK
164 installation process installs the appropriate library packages 164 installation process installs the appropriate library packages
165 as part of the SDK. Following is an example using ``libc`` 165 as part of the SDK. Following is an example using ``libc``
166 static development libraries: TOOLCHAIN_TARGET_TASK_append = " 166 static development libraries: TOOLCHAIN_TARGET_TASK:append = "
167 libc-staticdev" 167 libc-staticdev"
168 168
1697. *Run the Installer:* You can now run the SDK installer from 1697. *Run the Installer:* You can now run the SDK installer from
diff --git a/documentation/sdk-manual/extensible.rst b/documentation/sdk-manual/extensible.rst
index 2cdb06d65c..bdce0414e4 100644
--- a/documentation/sdk-manual/extensible.rst
+++ b/documentation/sdk-manual/extensible.rst
@@ -838,7 +838,7 @@ recipe.
838If you need to add runtime dependencies, you can do so by adding the 838If you need to add runtime dependencies, you can do so by adding the
839following to your recipe:: 839following to your recipe::
840 840
841 RDEPENDS_${PN} += "dependency1 dependency2 ..." 841 RDEPENDS:${PN} += "dependency1 dependency2 ..."
842 842
843.. note:: 843.. note::
844 844