From 3e7c08f358e9bd91808c8ff3b76c11aedeb82f85 Mon Sep 17 00:00:00 2001 From: Eli Schwartz Date: Thu, 1 Sep 2022 01:03:20 -0400 Subject: [PATCH] fix one more missing explicit "setup" subcommand --- mesonbuild/mdist.py | 1 + 1 file changed, 1 insertion(+) diff --git a/mesonbuild/mdist.py b/mesonbuild/mdist.py index 073e276c4..c61f0ef60 100644 --- a/mesonbuild/mdist.py +++ b/mesonbuild/mdist.py @@ -265,6 +265,7 @@ def check_dist(packagename, meson_command, extra_meson_args, bld_root, privdir): unpacked_files = glob(os.path.join(unpackdir, '*')) assert len(unpacked_files) == 1 unpacked_src_dir = unpacked_files[0] + meson_command += ['setup'] meson_command += create_cmdline_args(bld_root) meson_command += extra_meson_args