summaryrefslogtreecommitdiffstats
path: root/tools/ccache
diff options
context:
space:
mode:
authorblogic <blogic@3c298f89-4303-0410-b956-a3cf2f4a3e73>2012-08-10 19:05:22 +0000
committerblogic <blogic@3c298f89-4303-0410-b956-a3cf2f4a3e73>2012-08-10 19:05:22 +0000
commit1156b1422769f1d5143eb431c39e76ffa82d5c5e (patch)
tree42eeb01656dd85beb4f0c9fa0e39062b14b9dc36 /tools/ccache
parent039dd7421f24a09a5fc0b089167ddfb1340f4d5e (diff)
[tools] fix ccache build
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@33087 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'tools/ccache')
-rw-r--r--tools/ccache/Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/ccache/Makefile b/tools/ccache/Makefile
index 442094a18..2a43a7e22 100644
--- a/tools/ccache/Makefile
+++ b/tools/ccache/Makefile
@@ -16,6 +16,8 @@ PKG_MD5SUM:=80a698c22d0b06b19c88ac58e8d8b632
include $(INCLUDE_DIR)/host-build.mk
+HOSTCC:=$(HOSTCC_NOCACHE)
+
define Host/Install/ccache
$(INSTALL_DIR) $(STAGING_DIR_HOST)/bin/
$(CP) ./files/* $(STAGING_DIR_HOST)/bin/
@@ -23,7 +25,7 @@ endef
ifneq ($(strip $(shell which ccache >/dev/null && echo found)),found)
define Host/Compile
- $(MAKE) CC="$(HOSTCC_NOCACHE)" -C $(HOST_BUILD_DIR)
+ $(MAKE) -C $(HOST_BUILD_DIR)
endef
define Host/Clean