summaryrefslogtreecommitdiffstats
path: root/documentation/ref-manual/migration-3.2.rst
diff options
context:
space:
mode:
authorMichael Opdenacker <michael.opdenacker@bootlin.com>2021-04-15 17:58:45 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2021-04-23 16:39:03 +0100
commit773536c333248214f8f41eff698d8bfd3c687249 (patch)
tree526a86685e2d035455505f8ba45450bc70060e4b /documentation/ref-manual/migration-3.2.rst
parent21b42cc54f37fcbfdfa3ea69694b4f2003433d02 (diff)
downloadpoky-773536c333248214f8f41eff698d8bfd3c687249.tar.gz
manuals: simplify code insertion
This replaces instances of ": ::" by "::", which generates identical HTML output (From yocto-docs rev: 1f410dfc7c16c09af612de659f8574ef6cff4636) Signed-off-by: Michael Opdenacker <michael.opdenacker@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'documentation/ref-manual/migration-3.2.rst')
-rw-r--r--documentation/ref-manual/migration-3.2.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/documentation/ref-manual/migration-3.2.rst b/documentation/ref-manual/migration-3.2.rst
index 39743af70d..956a56f626 100644
--- a/documentation/ref-manual/migration-3.2.rst
+++ b/documentation/ref-manual/migration-3.2.rst
@@ -90,12 +90,12 @@ If you have anonymous python or in-line python conditionally adding
90dependencies in your custom recipes, and you intend for those recipes to 90dependencies in your custom recipes, and you intend for those recipes to
91work with multilib, then you will need to ensure that ``${MLPREFIX}`` 91work with multilib, then you will need to ensure that ``${MLPREFIX}``
92is prefixed on the package names in the dependencies, for example 92is prefixed on the package names in the dependencies, for example
93(from the ``glibc`` recipe): :: 93(from the ``glibc`` recipe)::
94 94
95 RRECOMMENDS_${PN} = "${@bb.utils.contains('DISTRO_FEATURES', 'ldconfig', '${MLPREFIX}ldconfig', '', d)}" 95 RRECOMMENDS_${PN} = "${@bb.utils.contains('DISTRO_FEATURES', 'ldconfig', '${MLPREFIX}ldconfig', '', d)}"
96 96
97This also applies when conditionally adding packages to :term:`PACKAGES` where 97This also applies when conditionally adding packages to :term:`PACKAGES` where
98those packages have dependencies, for example (from the ``alsa-plugins`` recipe): :: 98those packages have dependencies, for example (from the ``alsa-plugins`` recipe)::
99 99
100 PACKAGES += "${@bb.utils.contains('PACKAGECONFIG', 'pulseaudio', 'alsa-plugins-pulseaudio-conf', '', d)}" 100 PACKAGES += "${@bb.utils.contains('PACKAGECONFIG', 'pulseaudio', 'alsa-plugins-pulseaudio-conf', '', d)}"
101 ... 101 ...
@@ -229,7 +229,7 @@ needs ``/etc/ld.so.conf`` to be present at image build time:
229 229
230When some recipe installs libraries to a non-standard location, and 230When some recipe installs libraries to a non-standard location, and
231therefore installs in a file in ``/etc/ld.so.conf.d/foo.conf``, we 231therefore installs in a file in ``/etc/ld.so.conf.d/foo.conf``, we
232need ``/etc/ld.so.conf`` containing: :: 232need ``/etc/ld.so.conf`` containing::
233 233
234 include /etc/ld.so.conf.d/*.conf 234 include /etc/ld.so.conf.d/*.conf
235 235