From 864ae9139246580e7b0fd23077bb02d2be00d000 Mon Sep 17 00:00:00 2001 From: Antonio Ospite Date: Thu, 27 Mar 2025 16:34:36 +0100 Subject: [PATCH] meson: pass --no-pager to `meson configure` command The `meson configure` command is used in `.gitlab-ci/meson/build.sh` to show a summary of the build configuration, however when the script is re-used locally on systems when there is a pager the commands blocks for user input, which can be annoying. Pass the `--no-pager` option to `meson configure`, so that it never blocks for user input. This does not change the behavior in the CI, it just makes the script run uninterrupted also on local invocations. Part-of: --- .gitlab-ci/meson/build.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci/meson/build.sh b/.gitlab-ci/meson/build.sh index f4d4e02053f..f1d1037e73a 100755 --- a/.gitlab-ci/meson/build.sh +++ b/.gitlab-ci/meson/build.sh @@ -83,7 +83,7 @@ if [ -n "$HOST_BUILD_OPTIONS" ]; then section_switch meson-host-build "meson: host build" - meson configure + meson configure --no-pager ninja ninja install popd @@ -186,7 +186,7 @@ meson setup _build \ -D backend_max_links=${MAX_LD} \ ${EXTRA_OPTION} cd _build -meson configure +meson configure --no-pager uncollapsed_section_switch meson-build "meson: build"