From 78387926358d9da188b9eae6cff5e8427e970fe9 Mon Sep 17 00:00:00 2001 From: Jan Beich Date: Tue, 25 Apr 2023 14:07:21 +0000 Subject: [PATCH] Installation: unbreak Meson steps - ninja doesn't support `--tags` unlike meson - `--skip-subprojects` is more clear than `--tags runtime,man` --- pages/Getting Started/Installation.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pages/Getting Started/Installation.md b/pages/Getting Started/Installation.md index d6a300c..bff11bb 100644 --- a/pages/Getting Started/Installation.md +++ b/pages/Getting Started/Installation.md @@ -372,8 +372,8 @@ installed._ ```plain meson subprojects update --reset meson setup build -ninja -C build -ninja -C build install --tags runtime,man +meson compile -C build +meson install -C build --skip-subprojects ``` Refer to [Debugging](../../Contributing-and-Debugging) to see how to build &