From 0ba1108c1346a7f5240a203cbab090037bd17f77 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Revol?= <revol@free.fr> Date: Fri, 18 Aug 2023 03:37:39 +0200 Subject: [PATCH] build: Fix Meson warning about missing setup subcommand WARNING: Running the setup command as `meson [options]` instead of `meson setup [options]` is ambiguous and deprecated. --- bootstrap.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bootstrap.sh b/bootstrap.sh index 836edfb8..95a0a782 100755 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -7,7 +7,7 @@ test -d build/ && rm -r build/ # Get external libs (MicroPython, tiny-AES-c, SHA256) git submodule deinit --all git submodule update --init ./lib -meson --cross-file card10-cross.ini build/ "$@" +meson setup --cross-file card10-cross.ini build/ "$@" set +x -- GitLab