From 7fb0fa0838f9276f1bf0a1c56ddc1afeff52cdcf Mon Sep 17 00:00:00 2001 From: =?utf8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Wed, 7 Dec 2022 13:17:11 +0100 Subject: [PATCH] docs: run `meson setup` explicitly in build instructions Fixing all instances of the same issue on the same docs page. --- doc/build.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/build.rst b/doc/build.rst index 718d61a03..09b314dd6 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: -- 2.47.2