Add final "meson setup --reconfigure" to README.md
authorBernd Schubert <bschubert@ddn.com>
Wed, 20 Mar 2024 11:59:15 +0000 (12:59 +0100)
committerBernd Schubert <bschubert@ddn.com>
Wed, 20 Mar 2024 11:59:59 +0000 (12:59 +0100)
This reconfigure is recommended to ensure the build system
(ninja/cmake/...) get the updated meson config. They
typically do, but it depends on file time stamps - is
a potential random error source.

README.md

index 6855cefa0ebf3ed4ef3baa3f9d08cfba704aae88..eaf1308d5c7a172fc75137e4d33c0fee4f3dc5e2 100644 (file)
--- a/README.md
+++ b/README.md
@@ -73,7 +73,10 @@ nevertheless want to adjust them, you can do so with the
 *meson configure* command:
 
     $ meson configure # list options
-    $ meson configure -D disable-mtab=true # set an option
+    $ meson configure -D disable-mtab=true # set an optionq
+
+    $ # ensure all meson options are applied to the final build system
+    $ meson setup --reconfigure ../
 
 To build, test, and install libfuse, you then use Ninja: