diff options
author | Nicolas Dechesne <nicolas.dechesne@linaro.org> | 2020-07-30 13:37:11 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2020-09-17 10:09:34 +0100 |
commit | 28afbf81ecb34add93f5eed2c1a41ec5f278d0a7 (patch) | |
tree | 62804dd25f10e4a3781268549cde2aba8bafcb03 /documentation/ref-manual/ref-variables.rst | |
parent | 283ed72d487ed78d4f8e0fcc17f635d6c212b7c6 (diff) | |
download | poky-28afbf81ecb34add93f5eed2c1a41ec5f278d0a7.tar.gz |
sphinx: fix links when the link text should be displayed
When an hyperlink should be display in the output, there is no need to
any specific syntax or marker, the parser finds links and mail
addresses in ordinary text. Somehow the conversion from pandoc
generated wrong output in the form: ` <link>`__. This patch is
generated using the following Python regexp:
line = re.sub("` <(https?://.*)>`__",
"\\1",
line)
(From yocto-docs rev: a35d735a74425dff34c63c086947624467658c40)
Signed-off-by: Nicolas Dechesne <nicolas.dechesne@linaro.org>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'documentation/ref-manual/ref-variables.rst')
-rw-r--r-- | documentation/ref-manual/ref-variables.rst | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/documentation/ref-manual/ref-variables.rst b/documentation/ref-manual/ref-variables.rst index 53e99a395a..205a060103 100644 --- a/documentation/ref-manual/ref-variables.rst +++ b/documentation/ref-manual/ref-variables.rst | |||
@@ -546,7 +546,7 @@ system and gives an overview of their function and contents. | |||
546 | software. | 546 | software. |
547 | 547 | ||
548 | When specifying recipe files, you can pattern match using Python's | 548 | When specifying recipe files, you can pattern match using Python's |
549 | ```glob`` <https://docs.python.org/3/library/glob.html>`__ syntax. | 549 | ```glob`https://docs.python.org/3/library/glob.html syntax. |
550 | For details on the syntax, see the documentation by following the | 550 | For details on the syntax, see the documentation by following the |
551 | previous link. | 551 | previous link. |
552 | 552 | ||
@@ -604,7 +604,7 @@ system and gives an overview of their function and contents. | |||
604 | compiler. Consequently, the syntax follows Python's Regular | 604 | compiler. Consequently, the syntax follows Python's Regular |
605 | Expression (re) syntax. The expressions are compared against the full | 605 | Expression (re) syntax. The expressions are compared against the full |
606 | paths to the files. For complete syntax information, see Python's | 606 | paths to the files. For complete syntax information, see Python's |
607 | documentation at ` <http://docs.python.org/3/library/re.html#re>`__. | 607 | documentation at http://docs.python.org/3/library/re.html#re. |
608 | 608 | ||
609 | The following example uses a complete regular expression to tell | 609 | The following example uses a complete regular expression to tell |
610 | BitBake to ignore all recipe and recipe append files in the | 610 | BitBake to ignore all recipe and recipe append files in the |
@@ -2173,7 +2173,7 @@ system and gives an overview of their function and contents. | |||
2173 | 2173 | ||
2174 | - When specifying files or paths, you can pattern match using | 2174 | - When specifying files or paths, you can pattern match using |
2175 | Python's | 2175 | Python's |
2176 | ```glob`` <https://docs.python.org/2/library/glob.html>`__ | 2176 | ```glob`https://docs.python.org/2/library/glob.html |
2177 | syntax. For details on the syntax, see the documentation by | 2177 | syntax. For details on the syntax, see the documentation by |
2178 | following the previous link. | 2178 | following the previous link. |
2179 | 2179 | ||
@@ -2435,7 +2435,7 @@ system and gives an overview of their function and contents. | |||
2435 | 2435 | ||
2436 | Here is an example from the ``dbus`` recipe: GROUPADD_PARAM_${PN} = | 2436 | Here is an example from the ``dbus`` recipe: GROUPADD_PARAM_${PN} = |
2437 | "-r netdev" For information on the standard Linux shell command | 2437 | "-r netdev" For information on the standard Linux shell command |
2438 | ``groupadd``, see ` <http://linux.die.net/man/8/groupadd>`__. | 2438 | ``groupadd``, see http://linux.die.net/man/8/groupadd. |
2439 | 2439 | ||
2440 | GROUPMEMS_PARAM | 2440 | GROUPMEMS_PARAM |
2441 | When inheriting the :ref:`useradd <ref-classes-useradd>` class, | 2441 | When inheriting the :ref:`useradd <ref-classes-useradd>` class, |
@@ -2444,7 +2444,7 @@ system and gives an overview of their function and contents. | |||
2444 | of a group when the package is installed. | 2444 | of a group when the package is installed. |
2445 | 2445 | ||
2446 | For information on the standard Linux shell command ``groupmems``, | 2446 | For information on the standard Linux shell command ``groupmems``, |
2447 | see ` <http://linux.die.net/man/8/groupmems>`__. | 2447 | see http://linux.die.net/man/8/groupmems. |
2448 | 2448 | ||
2449 | GRUB_GFXSERIAL | 2449 | GRUB_GFXSERIAL |
2450 | Configures the GNU GRand Unified Bootloader (GRUB) to have graphics | 2450 | Configures the GNU GRand Unified Bootloader (GRUB) to have graphics |
@@ -3313,7 +3313,7 @@ system and gives an overview of their function and contents. | |||
3313 | The value in ``INITSCRIPT_PARAMS`` is passed through to the | 3313 | The value in ``INITSCRIPT_PARAMS`` is passed through to the |
3314 | ``update-rc.d`` command. For more information on valid parameters, | 3314 | ``update-rc.d`` command. For more information on valid parameters, |
3315 | please see the ``update-rc.d`` manual page at | 3315 | please see the ``update-rc.d`` manual page at |
3316 | ` <http://www.tin.org/bin/man.cgi?section=8&topic=update-rc.d>`__. | 3316 | http://www.tin.org/bin/man.cgi?section=8&topic=update-rc.d. |
3317 | 3317 | ||
3318 | INSANE_SKIP | 3318 | INSANE_SKIP |
3319 | Specifies the QA checks to skip for a specific package within a | 3319 | Specifies the QA checks to skip for a specific package within a |
@@ -4193,7 +4193,7 @@ system and gives an overview of their function and contents. | |||
4193 | variable for more information. | 4193 | variable for more information. |
4194 | 4194 | ||
4195 | module_conf | 4195 | module_conf |
4196 | Specifies ```modprobe.d`` <http://linux.die.net/man/5/modprobe.d>`__ | 4196 | Specifies ```modprobe.d`http://linux.die.net/man/5/modprobe.d |
4197 | syntax lines for inclusion in the ``/etc/modprobe.d/modname.conf`` | 4197 | syntax lines for inclusion in the ``/etc/modprobe.d/modname.conf`` |
4198 | file. | 4198 | file. |
4199 | 4199 | ||
@@ -7069,7 +7069,7 @@ system and gives an overview of their function and contents. | |||
7069 | toolchain. One example is the Sourcery G++ Toolchain. The support for | 7069 | toolchain. One example is the Sourcery G++ Toolchain. The support for |
7070 | this toolchain resides in the separate Mentor Graphics | 7070 | this toolchain resides in the separate Mentor Graphics |
7071 | ``meta-sourcery`` layer at | 7071 | ``meta-sourcery`` layer at |
7072 | ` <http://github.com/MentorEmbedded/meta-sourcery/>`__. | 7072 | http://github.com/MentorEmbedded/meta-sourcery/. |
7073 | 7073 | ||
7074 | The layer's ``README`` file contains information on how to use the | 7074 | The layer's ``README`` file contains information on how to use the |
7075 | Sourcery G++ Toolchain as an external toolchain. In summary, you must | 7075 | Sourcery G++ Toolchain as an external toolchain. In summary, you must |
@@ -7527,7 +7527,7 @@ system and gives an overview of their function and contents. | |||
7527 | "sdcard" specifies the ``IMAGE_FSTYPES`` to use for the U-boot image. | 7527 | "sdcard" specifies the ``IMAGE_FSTYPES`` to use for the U-boot image. |
7528 | 7528 | ||
7529 | For more information on how the ``UBOOT_CONFIG`` is handled, see the | 7529 | For more information on how the ``UBOOT_CONFIG`` is handled, see the |
7530 | ```uboot-config`` <http://git.yoctoproject.org/cgit/cgit.cgi/poky/tree/meta/classes/uboot-config.bbclass>`__ | 7530 | ```uboot-config`http://git.yoctoproject.org/cgit/cgit.cgi/poky/tree/meta/classes/uboot-config.bbclass |
7531 | class. | 7531 | class. |
7532 | 7532 | ||
7533 | UBOOT_ENTRYPOINT | 7533 | UBOOT_ENTRYPOINT |
@@ -7787,7 +7787,7 @@ system and gives an overview of their function and contents. | |||
7787 | "--system --home ${localstatedir}/lib/dbus \\ --no-create-home | 7787 | "--system --home ${localstatedir}/lib/dbus \\ --no-create-home |
7788 | --shell /bin/false \\ --user-group messagebus" For information on the | 7788 | --shell /bin/false \\ --user-group messagebus" For information on the |
7789 | standard Linux shell command ``useradd``, see | 7789 | standard Linux shell command ``useradd``, see |
7790 | ` <http://linux.die.net/man/8/useradd>`__. | 7790 | http://linux.die.net/man/8/useradd. |
7791 | 7791 | ||
7792 | USERADD_UID_TABLES | 7792 | USERADD_UID_TABLES |
7793 | Specifies a password file to use for obtaining static user | 7793 | Specifies a password file to use for obtaining static user |