diff options
| author | Eli Schwartz <eschwartz93@gmail.com> | 2025-09-25 10:51:12 -0400 |
|---|---|---|
| committer | Eli Schwartz <eschwartz93@gmail.com> | 2025-09-25 12:58:43 -0400 |
| commit | 21eed8415c420ae966e0b93ed7da44e60d4d64c0 (patch) | |
| tree | 763a65c44a96bd6801598333bff41238807b6f5b | |
| parent | 26ad2449b7957a62a2fa212f9b9bcbcb410d2784 (diff) | |
| download | meson-21eed8415c420ae966e0b93ed7da44e60d4d64c0.tar.gz | |
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.
| -rw-r--r-- | mesonbuild/envconfig.py | 4 |
1 files 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: |
