diff options
author | Erik Faye-Lund <[email protected]> | 2019-04-18 16:27:26 +0200 |
---|---|---|
committer | Erik Faye-Lund <[email protected]> | 2019-05-02 11:09:16 +0000 |
commit | 767c5178168a24012fe9002ac3ae930d53375949 (patch) | |
tree | 176b59a015084091c7ef886e252c169d474dc15a /docs/meson.html | |
parent | b877722d756960267dd8a2b60659eeb1fa96fe95 (diff) |
docs: fixup bad paragraphing
This markup seems to assume paragraphs survive across block-elements,
which isn't the case. Let's rectify that.
Signed-off-by: Erik Faye-Lund <[email protected]>
Reviewed-by: Eric Engestrom <[email protected]>
Diffstat (limited to 'docs/meson.html')
-rw-r--r-- | docs/meson.html | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/docs/meson.html b/docs/meson.html index 04a0e7d64bc..ad954c1cc31 100644 --- a/docs/meson.html +++ b/docs/meson.html @@ -258,29 +258,29 @@ Then configure meson: For selecting llvm-config for cross compiling a <a href="https://mesonbuild.com/Cross-compilation.html#defining-the-environment">"cross file"</a> should be used. It uses the same format as the native file above: +</p> -cross-llvm.ini +<p>cross-llvm.ini</p> <pre> [binaries] ... llvm-config = '/usr/lib/llvm-config-32' </pre> -Then configure meson: - +<p>Then configure meson:</p> <pre> meson builddir/ --cross-file cross-llvm.ini </pre> See the <a href="#cross-compilation">Cross Compilation</a> section for more information. -</dd></p> +</dd> <dd><p> For older versions of meson <code>$PATH</code> (or <code>%PATH%</code> on windows) will be searched for llvm-config (and llvm-config$version and llvm-config-$version), you can override this environment variable to control the search: <code>PATH=/path/with/llvm-config:$PATH meson build</code>. -</dd></p> +</p></dd> <dt><code>PKG_CONFIG_PATH</code></dt> <dd><p>The |