summaryrefslogtreecommitdiff
path: root/mesonbuild/envconfig.py
diff options
context:
space:
mode:
authorEli Schwartz <eschwartz93@gmail.com>2025-09-25 10:51:12 -0400
committerEli Schwartz <eschwartz93@gmail.com>2025-09-25 12:58:43 -0400
commit21eed8415c420ae966e0b93ed7da44e60d4d64c0 (patch)
tree763a65c44a96bd6801598333bff41238807b6f5b /mesonbuild/envconfig.py
parent26ad2449b7957a62a2fa212f9b9bcbcb410d2784 (diff)
downloadmeson-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.
Diffstat (limited to 'mesonbuild/envconfig.py')
-rw-r--r--mesonbuild/envconfig.py4
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: