Merge "Reenable ccache."
diff --git a/core/combo/select.mk b/core/combo/select.mk
index 98697e0..e18cb1b 100644
--- a/core/combo/select.mk
+++ b/core/combo/select.mk
@@ -92,8 +92,12 @@
   # Check that the executable is here.
   ccache := $(strip $(wildcard $(ccache)))
   ifdef ccache
-    CC_WRAPPER ?= $(ccache)
-    CXX_WRAPPER ?= $(ccache)
+    ifndef CC_WRAPPER
+      CC_WRAPPER := $(ccache)
+    endif
+    ifndef CXX_WRAPPER
+      CXX_WRAPPER := $(ccache)
+    endif
     ccache =
   endif
 endif