diff options
| -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: |
