summaryrefslogtreecommitdiffstats
path: root/tmk_core
diff options
context:
space:
mode:
authorJoel Challis <git@zvecr.com>2021-10-22 00:21:43 +0100
committerGitHub <noreply@github.com>2021-10-22 10:21:43 +1100
commit1b93d576f84822d0f4947179ee49f614ba345f12 (patch)
treee9757b9792325c503a0ffc05846a0b438bbd698f /tmk_core
parentb36e0c66581b5ec0e3aff5212857e9694115e66c (diff)
Fix ccache default (#14906)
Diffstat (limited to 'tmk_core')
-rw-r--r--tmk_core/rules.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/tmk_core/rules.mk b/tmk_core/rules.mk
index 4c547cfd24..56a331e288 100644
--- a/tmk_core/rules.mk
+++ b/tmk_core/rules.mk
@@ -70,7 +70,7 @@ CSTANDARD = -std=gnu99
#CXXDEFS +=
# Speed up recompilations by opt-in usage of ccache
-USE_CCACHE ?= yes
+USE_CCACHE ?= no
ifneq ($(USE_CCACHE),no)
CC_PREFIX ?= ccache
endif