From c8ebaf352179cc0c90c24fe7ba32e1e0095e3156 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Sat, 12 Nov 2022 12:10:05 +0100 Subject: [PATCH] python/build/meson.py: use "meson setup" instead of the deprecated syntax --- python/build/meson.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/python/build/meson.py b/python/build/meson.py index 2ad2904bb..d86c48e6a 100644 --- a/python/build/meson.py +++ b/python/build/meson.py @@ -82,8 +82,8 @@ endian = '{endian}' def configure(toolchain, src, build, args=()): cross_file = make_cross_file(toolchain) configure = [ - 'meson', - src, build, + 'meson', 'setup', + build, src, '--prefix', toolchain.install_prefix,