summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/README.md b/README.md
index 5ffed35..dfc32e9 100644
--- a/README.md
+++ b/README.md
@@ -54,10 +54,10 @@ For instance:
```sh
# If the tarball was made with Autotools, and you want to rebuild the reference
# documentation, you must enable maintainer-mode:
-$ meson --prefix=/some_directory --libdir=lib -Dmaintainer-mode=true your_builddir .
+$ meson setup --prefix=/some_directory --libdir=lib -Dmaintainer-mode=true your_builddir .
# If the tarball was made with Meson, or you don't want to rebuild the docs:
-$ meson --prefix=/some_directory --libdir=lib your_builddir .
+$ meson setup --prefix=/some_directory --libdir=lib your_builddir .
# then:
$ cd your_builddir
@@ -105,7 +105,7 @@ Don't call the builddir 'build'. There is a directory called 'build' with
files used by Autotools.
```sh
-$ meson --prefix=/some_directory --libdir=lib your_builddir .
+$ meson setup --prefix=/some_directory --libdir=lib your_builddir .
$ cd your_builddir
$ ninja
$ ninja install