From ea4f859547717057329e999be4b6d42637ed2bd6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Mon, 12 Feb 2024 12:13:17 +0100 Subject: [PATCH] tools/toolbox: Include subprojects in meson-build --dist The main use of the --dist flag is as a fallback when the CI dist job doesn't work for some reason. The gnome-shell tarball now needs the --include-subprojects flag, and it doesn't hurt for mutter/gnome-shell-extensions, so just add it when --dist is specified. Part-of: --- tools/toolbox/meson-build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/toolbox/meson-build.sh b/tools/toolbox/meson-build.sh index 32ff10643..fc17cb70e 100755 --- a/tools/toolbox/meson-build.sh +++ b/tools/toolbox/meson-build.sh @@ -103,7 +103,7 @@ done find_toplevel BUILD_DIR=build-$TOOLBOX -[[ $RUN_DIST ]] && DIST="meson dist -C $BUILD_DIR" || DIST=: +[[ $RUN_DIST ]] && DIST="meson dist -C $BUILD_DIR --include-subprojects" || DIST=: needs_reconfigure && RECONFIGURE=--reconfigure