Update meson setup command to remove warning (#6338)

This is a very easy fix, to remove the following warning:
```
WARNING: Running the setup command as `meson [options]` instead of `meson setup [options]` is ambiguous and deprecated.
```
The fix is to just run `meson setup` instead and it works like a charm.

Related PRs: i3/i3lock#365 and i3/i3status#538.
This commit is contained in:
Emeric Planet
2024-12-29 19:50:09 +01:00
committed by GitHub
parent 2746e0319b
commit 9dc5230000
3 changed files with 3 additions and 3 deletions

View File

@ -28,7 +28,7 @@ rm -rf \
mkdir build
cd build
meson .. -Dprefix=/usr -Ddocs=true -Dmans=true
meson setup -Dprefix=/usr -Ddocs=true -Dmans=true
ninja
cp *.1 ../man/
cp *.html ../docs/