diff options
author | Vladimír Čunát <vladimir.cunat@nic.cz> | 2022-12-07 13:17:11 +0100 |
---|---|---|
committer | Vladimír Čunát <vladimir.cunat@nic.cz> | 2022-12-07 13:17:11 +0100 |
commit | 7fb0fa0838f9276f1bf0a1c56ddc1afeff52cdcf (patch) | |
tree | f1922aa4547eaa31d537c5322216832e53e40714 /doc/build.rst | |
parent | docs: run `meson setup` explicitly in build instructions (diff) | |
download | knot-resolver-7fb0fa0838f9276f1bf0a1c56ddc1afeff52cdcf.tar.xz knot-resolver-7fb0fa0838f9276f1bf0a1c56ddc1afeff52cdcf.zip |
docs: run `meson setup` explicitly in build instructions
Fixing all instances of the same issue on the same docs page.
Diffstat (limited to '')
-rw-r--r-- | doc/build.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/build.rst b/doc/build.rst index 718d61a0..09b314dd 100644 --- a/doc/build.rst +++ b/doc/build.rst @@ -139,7 +139,7 @@ For complete list of build options create a build directory and run: .. code-block:: bash - $ meson build_dir + $ meson setup build_dir $ meson configure build_dir To customize project build options, use ``-Doption=value`` when creating @@ -147,7 +147,7 @@ a build directory: .. code-block:: bash - $ meson build_dir -Ddoc=enabled + $ meson setup build_dir -Ddoc=enabled ... or change options in an already existing build directory: |