From ed9be128370c93b93895bb1bb61cc1e606277613 Mon Sep 17 00:00:00 2001 From: Matthias Goergens Date: Wed, 29 Mar 2023 11:07:04 +0800 Subject: Fix meson deprecation warning When running `meson ..` I get: ``` WARNING: Running the setup command as `meson [options]` instead of `meson setup [options]` is ambiguous and deprecated.WARNING: Running the setup command as `meson [options]` instead of `meson setup [options]` is ambiguous and deprecated. ``` So let's fix this in the docs. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 052effc..1b02149 100644 --- a/README.md +++ b/README.md @@ -56,7 +56,7 @@ must use [Meson](http://mesonbuild.com/) and tarball, create a (temporary) build directory and run Meson: $ mkdir build; cd build - $ meson .. + $ meson setup .. Normally, the default build options will work fine. If you nevertheless want to adjust them, you can do so with the -- cgit v1.2.1