From 21eed8415c420ae966e0b93ed7da44e60d4d64c0 Mon Sep 17 00:00:00 2001 From: Eli Schwartz Date: Thu, 25 Sep 2025 10:51:12 -0400 Subject: Fix regression that made compiler detection print messages about ccache Which could be printed dozens of times in a row inside ./run_project_tests.py. Regression in commit c3ea8d5aa1b48fbc4137ef783c567a32cd596993. --- mesonbuild/envconfig.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mesonbuild/envconfig.py b/mesonbuild/envconfig.py index 447639e00..f50578905 100644 --- a/mesonbuild/envconfig.py +++ b/mesonbuild/envconfig.py @@ -424,11 +424,11 @@ class BinaryTable: @staticmethod def detect_ccache() -> ExternalProgram: - return ExternalProgram('ccache') + return ExternalProgram('ccache', silent=True) @staticmethod def detect_sccache() -> ExternalProgram: - return ExternalProgram('sccache') + return ExternalProgram('sccache', silent=True) @staticmethod def detect_compiler_cache() -> ExternalProgram: -- cgit v1.2.3