From d1eb9bfe28c4ec77fc030cdc3f3e4e6f5a4ef7fc Mon Sep 17 00:00:00 2001 From: Boh_132_Boh <82704295+Boh132Boh@users.noreply.github.com> Date: Thu, 14 Mar 2024 12:36:28 +0100 Subject: [PATCH] Updated meson build instructions (#402) Just switched from "meson build --prefix=/usr" to "meson setup build --prefix=/usr " as while compiling I received this warning: WARNING: Running the setup command as `meson [options]` instead of `meson setup [options]` is ambiguous and deprecated. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 50cb7a0..735f3d7 100644 --- a/README.md +++ b/README.md @@ -197,7 +197,7 @@ But we recommend to use [Guix Home](https://guix.gnu.org/manual/devel/en/html_no - `libnotify` ```zsh -meson build --prefix=/usr +meson setup build --prefix=/usr ninja -C build meson install -C build ```