From 102278a77f01fe0363f9a95b2c07fd15811a7b4a Mon Sep 17 00:00:00 2001 From: Quentin Schulz Date: Thu, 7 Jul 2022 15:33:17 +0200 Subject: 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 (From yocto-docs rev: ca5e076a413b0e1241eefdfccfee5bfa652cf6f8) Signed-off-by: Quentin Schulz Reviewed-by: Michael Opdenacker Signed-off-by: Richard Purdie --- documentation/ref-manual/variables.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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. :ref:`systemd-boot ` class sets the :term:`SYSTEMD_BOOT_CFG` as follows:: - SYSTEMD_BOOT_CFG ?= "${:term:`S`}/loader.conf" + SYSTEMD_BOOT_CFG ?= "${S}/loader.conf" For information on Systemd-boot, see the `Systemd-boot documentation `__. -- cgit v1.2.3-54-g00ecf