Skip to content

Commit e3604a7

Browse files
committed
README.md: meson -> meson setup
1 parent 1bf39ce commit e3604a7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,10 +52,10 @@ files used by Autotools.
5252
For instance:
5353
```sh
5454
# If the tarball was made with Autotools, you must enable maintainer-mode:
55-
$ meson --prefix=/some_directory --libdir=lib -Dmaintainer-mode=true your_builddir .
55+
$ meson setup --prefix=/some_directory --libdir=lib -Dmaintainer-mode=true your_builddir .
5656

5757
# If the tarball was made with Meson:
58-
$ meson --prefix=/some_directory --libdir=lib your_builddir .
58+
$ meson setup --prefix=/some_directory --libdir=lib your_builddir .
5959

6060
# then:
6161
$ cd your_builddir
@@ -103,7 +103,7 @@ Don't call the builddir 'build'. There is a directory called 'build' with
103103
files used by Autotools.
104104

105105
```sh
106-
$ meson --prefix=/some_directory --libdir=lib your_builddir .
106+
$ meson setup --prefix=/some_directory --libdir=lib your_builddir .
107107
$ cd your_builddir
108108
$ ninja
109109
$ ninja install

0 commit comments

Comments
 (0)