Sfoglia il codice sorgente

fix ccache build

SVN-Revision: 33087
John Crispin 13 anni fa
parent
commit
e154d50368
1 ha cambiato i file con 3 aggiunte e 1 eliminazioni
  1. 3 1
      tools/ccache/Makefile

+ 3 - 1
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