diff options
author | Quentin Schulz <quentin.schulz@theobroma-systems.com> | 2022-07-07 15:33:17 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-07-20 14:25:01 +0100 |
commit | 102278a77f01fe0363f9a95b2c07fd15811a7b4a (patch) | |
tree | 17263eabd512a372380cc0e1104b6e267845e98f | |
parent | 8db83d989d13a77fbc7b288c1c2f7326993f1d1b (diff) | |
download | poky-102278a77f01fe0363f9a95b2c07fd15811a7b4a.tar.gz |
docs: ref-manual: variables: remove sphinx directive from literal block
Literal blocks make sphinx take their text verbatim. This means that
directives cannot be used in literal blocks. This means :term:`S` was
printed as-is, without actually creating a link to the S variable
definition as would be expected outside of literal blocks.
Cc: Quentin Schulz <foss+yocto@0leil.net>
(From yocto-docs rev: ca5e076a413b0e1241eefdfccfee5bfa652cf6f8)
Signed-off-by: Quentin Schulz <quentin.schulz@theobroma-systems.com>
Reviewed-by: Michael Opdenacker <michael.opdenacker@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | documentation/ref-manual/variables.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/documentation/ref-manual/variables.rst b/documentation/ref-manual/variables.rst index defc0bdcf8..cf817e9540 100644 --- a/documentation/ref-manual/variables.rst +++ b/documentation/ref-manual/variables.rst | |||
@@ -7659,7 +7659,7 @@ system and gives an overview of their function and contents. | |||
7659 | :ref:`systemd-boot <ref-classes-systemd-boot>` class sets the | 7659 | :ref:`systemd-boot <ref-classes-systemd-boot>` class sets the |
7660 | :term:`SYSTEMD_BOOT_CFG` as follows:: | 7660 | :term:`SYSTEMD_BOOT_CFG` as follows:: |
7661 | 7661 | ||
7662 | SYSTEMD_BOOT_CFG ?= "${:term:`S`}/loader.conf" | 7662 | SYSTEMD_BOOT_CFG ?= "${S}/loader.conf" |
7663 | 7663 | ||
7664 | For information on Systemd-boot, see the `Systemd-boot | 7664 | For information on Systemd-boot, see the `Systemd-boot |
7665 | documentation <https://www.freedesktop.org/wiki/Software/systemd/systemd-boot/>`__. | 7665 | documentation <https://www.freedesktop.org/wiki/Software/systemd/systemd-boot/>`__. |