From 3f9731bacfba965336cef3bf385593522a0032fa Mon Sep 17 00:00:00 2001 From: Eric Engestrom Date: Thu, 24 Nov 2022 17:07:34 +0000 Subject: [PATCH] release.sh: be explicit about `meson setup` command > WARNING: Running the setup command as `meson [options]` instead of `meson setup [options]` is ambiguous and deprecated. --- release.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/release.sh b/release.sh index 20fcdc2..1da93a7 100755 --- a/release.sh +++ b/release.sh @@ -456,9 +456,9 @@ process_module() { # has the builddir enabled by default build_dir="builddir" if [ -e "$build_dir" ]; then - meson $build_dir --wipe + meson setup $build_dir --wipe else - meson $build_dir + meson setup $build_dir fi if [ $? -ne 0 ]; then echo "Error: failed to configure module." -- 2.11.4.GIT