From e3604a745c4e77987ee1bca04701043145e96bfc Mon Sep 17 00:00:00 2001 From: Kjell Ahlstedt Date: Mon, 3 Apr 2023 11:58:29 +0200 Subject: README.md: meson -> meson setup --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index efa6734..0b2957b 100644 --- a/README.md +++ b/README.md @@ -52,10 +52,10 @@ files used by Autotools. For instance: ```sh # If the tarball was made with Autotools, 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: -$ meson --prefix=/some_directory --libdir=lib your_builddir . +$ meson setup --prefix=/some_directory --libdir=lib your_builddir . # then: $ cd your_builddir @@ -103,7 +103,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 -- cgit v1.2.1