From 4f3c90acfee4f5bbd128bdc72008fa2f79d52cfd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Zbigniew=20J=C4=99drzejewski-Szmek?= Date: Sat, 29 Jul 2023 14:07:07 +0200 Subject: [PATCH] configure: update meson invocation New meson says: WARNING: Running the setup command as `meson [options]` instead of `meson setup [options]` is ambiguous and deprecated. Inspired by https://github.com/systemd/systemd/issues/28482. --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure b/configure index e130c6cb142..5c1722db050 100755 --- a/configure +++ b/configure @@ -21,4 +21,4 @@ done export "${cflags?}" "${cxxflags?}" set -x -exec meson build "${args[@]}" +exec meson setup build "${args[@]}"