summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Engestrom <eric@engestrom.ch>2022-11-24 17:07:34 +0000
committerAlan Coopersmith <alan.coopersmith@oracle.com>2022-12-01 00:57:33 +0000
commit3f9731bacfba965336cef3bf385593522a0032fa (patch)
tree738394c88f6e269d3691ced078f176ce2314deea
parent26abb4a0e9c3ed7c523d82b028a2270da1dc64dd (diff)
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.
-rwxr-xr-xrelease.sh4
1 files 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."