File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -52,10 +52,10 @@ files used by Autotools.
52
52
For instance:
53
53
``` sh
54
54
# 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 .
56
56
57
57
# 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 .
59
59
60
60
# then:
61
61
$ cd your_builddir
@@ -103,7 +103,7 @@ Don't call the builddir 'build'. There is a directory called 'build' with
103
103
files used by Autotools.
104
104
105
105
``` sh
106
- $ meson --prefix=/some_directory --libdir=lib your_builddir .
106
+ $ meson setup --prefix=/some_directory --libdir=lib your_builddir .
107
107
$ cd your_builddir
108
108
$ ninja
109
109
$ ninja install
You can’t perform that action at this time.
0 commit comments