tools: build ccache when building the sdk (fixes #13949)

Signed-off-by: Felix Fietkau <nbd@openwrt.org>

SVN-Revision: 45266
This commit is contained in:
Felix Fietkau 2015-04-03 19:42:38 +00:00
parent 98cd35e477
commit 62231a8404
1 changed files with 1 additions and 1 deletions

View File

@ -72,7 +72,7 @@ $(curdir)/findutils/compile := $(curdir)/bison/install
$(curdir)/gengetopt/compile := $(curdir)/libtool/install
$(curdir)/patchelf/compile := $(curdir)/libtool/install
ifneq ($(CONFIG_CCACHE),)
ifneq ($(CONFIG_CCACHE)$(CONFIG_SDK),)
$(foreach tool, $(tools-y), $(eval $(curdir)/$(tool)/compile += $(curdir)/ccache/install))
tools-y += ccache
endif