summaryrefslogtreecommitdiffstats
path: root/documentation
diff options
context:
space:
mode:
authorMichael Opdenacker <michael.opdenacker@bootlin.com>2022-07-19 20:43:00 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2022-07-20 15:52:51 +0100
commit236f30b8a9cb1751aae290cc94da06d8f6917b30 (patch)
tree2ea8dc3fb263206778c587612653933316b8b208 /documentation
parentb373ad84050712b871d0e2cc487f20e773766cc7 (diff)
downloadpoky-236f30b8a9cb1751aae290cc94da06d8f6917b30.tar.gz
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. Initially contributed to the master branch by Quentin Schulz. (From yocto-docs rev: d9b3dcf65ef25c06f552482aba460dd16862bf96) Signed-off-by: Michael Opdenacker <michael.opdenacker@bootlin.com> Reported-by: Quentin Schulz <foss@0leil.net> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'documentation')
-rw-r--r--documentation/ref-manual/variables.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/documentation/ref-manual/variables.rst b/documentation/ref-manual/variables.rst
index f8808cc052..47462233c9 100644
--- a/documentation/ref-manual/variables.rst
+++ b/documentation/ref-manual/variables.rst
@@ -7609,7 +7609,7 @@ system and gives an overview of their function and contents.
7609 :ref:`systemd-boot <ref-classes-systemd-boot>` class sets the 7609 :ref:`systemd-boot <ref-classes-systemd-boot>` class sets the
7610 :term:`SYSTEMD_BOOT_CFG` as follows:: 7610 :term:`SYSTEMD_BOOT_CFG` as follows::
7611 7611
7612 SYSTEMD_BOOT_CFG ?= "${:term:`S`}/loader.conf" 7612 SYSTEMD_BOOT_CFG ?= "${S}/loader.conf"
7613 7613
7614 For information on Systemd-boot, see the `Systemd-boot 7614 For information on Systemd-boot, see the `Systemd-boot
7615 documentation <https://www.freedesktop.org/wiki/Software/systemd/systemd-boot/>`__. 7615 documentation <https://www.freedesktop.org/wiki/Software/systemd/systemd-boot/>`__.