diff options
author | Bernd Schubert <bschubert@ddn.com> | 2024-03-20 12:59:15 +0100 |
---|---|---|
committer | Bernd Schubert <bschubert@ddn.com> | 2024-03-20 12:59:59 +0100 |
commit | 425f52a1f515cd0e2148a427330bb82c96b18856 (patch) | |
tree | 860e0d6c96cd91858c2361a935b8fdd14532b68e | |
parent | 0d90a90b066397fcbc20188e34badc9852403ea9 (diff) | |
download | libfuse-425f52a1f515cd0e2148a427330bb82c96b18856.tar.gz |
Add final "meson setup --reconfigure" to README.md
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.
-rw-r--r-- | README.md | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -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: |