summaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorDudemanguy <random342@airmail.cc>2022-10-28 21:40:53 -0500
committerDudemanguy <random342@airmail.cc>2022-10-29 17:55:33 +0000
commit6ebc4928c52f14a762a2872e4960289cade364e5 (patch)
treed80acc385c6dc82dfe9e3856af7ef78a1b11d55f /README.md
parent89bd6ead6c6f710c42ce2f6f4c5abdb157090761 (diff)
downloadmpv-6ebc4928c52f14a762a2872e4960289cade364e5.tar.bz2
mpv-6ebc4928c52f14a762a2872e4960289cade364e5.tar.xz
ci: use meson setup build instead of meson build
The old "meson build" build command was actually deprecated a few months ago*. It turns out that you're supposed to use "meson setup build" instead which has been around for years. Go ahead and be a good citizen and update this in the CI. Also replace any mention of "meson build" with "meson setup build" in the documentation as well and change the one random hardcoded string we have in meson.build to "meson configure build" (might as well). *: https://github.com/mesonbuild/meson/commit/3c7ab542c0c4770241eae149b0d4cd8de329aee0
Diffstat (limited to 'README.md')
-rw-r--r--README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index a8569c3602..d604a26225 100644
--- a/README.md
+++ b/README.md
@@ -82,14 +82,14 @@ located in [build-system-differences][build-system-differences].
### Meson
-After creating your build directory (e.g. `meson build`), you can view a list
+After creating your build directory (e.g. `meson setup build`), you can view a list
of all the build options via `meson configure build`. You could also just simply
look at the `meson_options.txt` file. Logs are stored in `meson-logs` within
your build directory.
Example:
- meson build
+ meson setup build
meson compile -C build
meson install -C build