python/build/meson.py: use "meson setup" instead of the deprecated syntax

This commit is contained in:
Max Kellermann 2022-11-12 12:10:05 +01:00
parent 52d00f7e30
commit c8ebaf3521
1 changed files with 2 additions and 2 deletions

View File

@ -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,