From 7ef9379040378492a7742ce03d398a858adcc31a Mon Sep 17 00:00:00 2001 From: Erik Faye-Lund Date: Thu, 15 Apr 2021 15:47:08 +0200 Subject: [PATCH] docs: use code-block for ini These code-blocks are close enough to INI-files to parse that way, so let's use that for some syntax-coloring :) Reviewed-by: Eric Anholt Part-of: --- docs/meson.rst | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/meson.rst b/docs/meson.rst index 908901352d6..8e04eb313b1 100644 --- a/docs/meson.rst +++ b/docs/meson.rst @@ -249,7 +249,7 @@ to find llvm-config: custom-llvm.ini -:: +.. code-block:: ini [binaries] llvm-config = '/usr/local/bin/llvm/llvm-config' @@ -275,7 +275,7 @@ should be used. It uses the same format as the native file above: cross-llvm.ini -:: +.. code-block:: ini [binaries] ... @@ -427,7 +427,7 @@ of those, as they'll have the right values for your system: 32-bit build on x86 linux: -:: +.. code-block:: ini [binaries] c = '/usr/bin/gcc' @@ -451,7 +451,7 @@ of those, as they'll have the right values for your system: 64-bit build on ARM linux: -:: +.. code-block:: ini [binaries] c = '/usr/bin/aarch64-linux-gnu-gcc' @@ -469,7 +469,7 @@ of those, as they'll have the right values for your system: 64-bit build on x86 Windows: -:: +.. code-block:: ini [binaries] c = '/usr/bin/x86_64-w64-mingw32-gcc'