summaryrefslogtreecommitdiffstats
path: root/documentation
diff options
context:
space:
mode:
authorMichael Opdenacker <michael.opdenacker@bootlin.com>2022-07-19 19:55:18 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2022-07-20 15:52:46 +0100
commit17c23e485e472baf117811688d172038b6f2130d (patch)
treeffbac47329ab3dab892f210aabd95ce61570e805 /documentation
parent61ea9f7665d5c7d6b6dd4aeebb56519c83228c31 (diff)
downloadpoky-17c23e485e472baf117811688d172038b6f2130d.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: 882810d294762a6340909b59736acc660c4eaf5c) 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/ref-variables.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/documentation/ref-manual/ref-variables.rst b/documentation/ref-manual/ref-variables.rst
index e184608d19..b8d56a082b 100644
--- a/documentation/ref-manual/ref-variables.rst
+++ b/documentation/ref-manual/ref-variables.rst
@@ -7542,7 +7542,7 @@ system and gives an overview of their function and contents.
7542 ``SYSTEMD_BOOT_CFG`` as follows: 7542 ``SYSTEMD_BOOT_CFG`` as follows:
7543 :: 7543 ::
7544 7544
7545 SYSTEMD_BOOT_CFG ?= "${:term:`S`}/loader.conf" 7545 SYSTEMD_BOOT_CFG ?= "${S}/loader.conf"
7546 7546
7547 For information on Systemd-boot, see the `Systemd-boot 7547 For information on Systemd-boot, see the `Systemd-boot
7548 documentation <http://www.freedesktop.org/wiki/Software/systemd/systemd-boot/>`__. 7548 documentation <http://www.freedesktop.org/wiki/Software/systemd/systemd-boot/>`__.