summary refs log tree commit diff stats
path: root/docs/devel/build-system.rst
diff options
context:
space:
mode:
authorPaolo Bonzini <pbonzini@redhat.com>2024-10-11 11:36:20 +0200
committerPaolo Bonzini <pbonzini@redhat.com>2024-10-11 13:08:32 +0200
commiteffb0f7724bc317c1d4c13b92040ef1a022ab1a7 (patch)
treea98e24001776facdb6c46c27a18ea326222ff396 /docs/devel/build-system.rst
parent872e9581f705a98a26048180c454dedabc535b86 (diff)
downloadfocaccia-qemu-effb0f7724bc317c1d4c13b92040ef1a022ab1a7.tar.gz
focaccia-qemu-effb0f7724bc317c1d4c13b92040ef1a022ab1a7.zip
docs: fix invalid footnote syntax
All footnotes must come after a separator in reStructuredText.  Fix the
two files in which this does not happen.

This mistake causes the link to be rendered literally:

   ...from the venv itself[#distlib]_. If no...

and is caught by Sphinx 8.1.0 as an unreferenced footnote.

Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to '')
-rw-r--r--docs/devel/build-system.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/devel/build-system.rst b/docs/devel/build-system.rst
index 79eceb179d..fa1c59d9fd 100644
--- a/docs/devel/build-system.rst
+++ b/docs/devel/build-system.rst
@@ -145,13 +145,13 @@ was installed in the ``site-packages`` directory of another interpreter,
 or with the wrong ``pip`` program.
 
 If a package is available for the chosen interpreter, ``configure``
-prepares a small script that invokes it from the venv itself[#distlib]_.
+prepares a small script that invokes it from the venv itself\ [#distlib]_.
 If not, ``configure`` can also optionally install dependencies in the
 virtual environment with ``pip``, either from wheels in ``python/wheels``
 or by downloading the package with PyPI.  Downloading can be disabled with
 ``--disable-download``; and anyway, it only happens when a ``configure``
 option (currently, only ``--enable-docs``) is explicitly enabled but
-the dependencies are not present[#pip]_.
+the dependencies are not present\ [#pip]_.
 
 .. [#distlib] The scripts are created based on the package's metadata,
               specifically the ``console_script`` entry points.  This is the