meson: Use explicit setup subcommand
Fix the following warning in Meson 0.64:
WARNING: Running the setup command as `meson [options]` instead of `meson setup [options]` is ambiguous and deprecated.
Introduced in 3c7ab542c0
This commit is contained in:
parent
79d3ca0892
commit
d83a3d03a3
1 changed files with 1 additions and 1 deletions
|
@ -20,7 +20,7 @@ mesonConfigurePhase() {
|
|||
|
||||
echo "meson flags: $mesonFlags ${mesonFlagsArray[@]}"
|
||||
|
||||
meson build $mesonFlags "${mesonFlagsArray[@]}"
|
||||
meson setup build $mesonFlags "${mesonFlagsArray[@]}"
|
||||
cd build
|
||||
|
||||
if ! [[ -v enableParallelBuilding ]]; then
|
||||
|
|
Loading…
Reference in a new issue