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.
This commit is contained in:
Boh_132_Boh
2024-03-14 12:36:28 +01:00
committed by GitHub
parent d2b797406a
commit d1eb9bfe28

View File

@@ -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
```