# --- T2-COPYRIGHT-BEGIN --- # t2/package/*/meson/no-ccache.patch # Copyright (C) 2020 - 2025 The T2 SDE Project # SPDX-License-Identifier: GPL-2.0 or patched project license # --- T2-COPYRIGHT-END --- --- meson-1.7.0/mesonbuild/envconfig.py.vanilla 2025-01-26 19:26:47.286666598 -0800 +++ meson-1.7.0/mesonbuild/envconfig.py 2025-01-26 19:29:09.549999938 -0800 @@ -415,11 +415,7 @@ @staticmethod def detect_ccache() -> T.List[str]: - try: - subprocess.check_call(['ccache', '--version'], stdout=subprocess.PIPE, stderr=subprocess.PIPE) - except (OSError, subprocess.CalledProcessError): - return [] - return ['ccache'] + return [] @staticmethod def detect_sccache() -> T.List[str]: