summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEli Schwartz <eschwartz@archlinux.org>2022-09-01 01:03:20 -0400
committerEli Schwartz <eschwartz@archlinux.org>2023-03-20 17:22:51 -0400
commit3e7c08f358e9bd91808c8ff3b76c11aedeb82f85 (patch)
treeb442c256f817632c28f0ba73759b302c4ba53dea
parentcfc1abcfafb3b067b64f85953721b44b8066dedc (diff)
downloadmeson-3e7c08f358e9bd91808c8ff3b76c11aedeb82f85.tar.gz
fix one more missing explicit "setup" subcommand
-rw-r--r--mesonbuild/mdist.py1
1 files changed, 1 insertions, 0 deletions
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