diff options
author | Felix Fietkau <nbd@openwrt.org> | 2011-03-15 19:58:32 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2011-03-15 19:58:32 +0000 |
commit | 8ca99461fe1050f8087cb726073f2db79d68bc4c (patch) | |
tree | 3dbce210544b1e72d06e18d73e3267e15cee1a21 | |
parent | c48dcf9d1f48cf52e5c9353bf7b10b06d9d09ebe (diff) | |
download | upstream-8ca99461fe1050f8087cb726073f2db79d68bc4c.tar.gz upstream-8ca99461fe1050f8087cb726073f2db79d68bc4c.tar.bz2 upstream-8ca99461fe1050f8087cb726073f2db79d68bc4c.zip |
build: move the CCACHE_DIR to the build targets so that it doesn't interfere with a host ccache setup
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@26181 3c298f89-4303-0410-b956-a3cf2f4a3e73
-rw-r--r-- | include/package.mk | 1 | ||||
-rw-r--r-- | rules.mk | 2 |
2 files changed, 1 insertions, 2 deletions
diff --git a/include/package.mk b/include/package.mk index 1cf4d64cc9..2ebd66d119 100644 --- a/include/package.mk +++ b/include/package.mk @@ -90,6 +90,7 @@ define Build/Exports/Default $(1) : export CONFIG_SITE:=$$(CONFIG_SITE) $(1) : export PKG_CONFIG_PATH:=$$(PKG_CONFIG_PATH) $(1) : export PKG_CONFIG_LIBDIR:=$$(PKG_CONFIG_PATH) + $(1) : export CCACHE_DIR:=$(STAGING_DIR)/ccache endef Build/Exports=$(Build/Exports/Default) @@ -178,8 +178,6 @@ INSTALL_DATA:=install -m0644 INSTALL_CONF:=install -m0600 ifneq ($(CONFIG_CCACHE),) - # FIXME: move this variable to a better location - export CCACHE_DIR=$(STAGING_DIR)/ccache TARGET_CC:= ccache $(TARGET_CC) TARGET_CXX:= ccache $(TARGET_CXX) endif |