From: Jo-Philipp Wich Date: Thu, 6 Oct 2016 13:26:16 +0000 (+0200) Subject: tools: do not apply ccache dependency to xz X-Git-Tag: v17.01.0-rc1~1234 X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fstaging%2Fchunkeey.git;a=commitdiff_plain;h=66a62b896624939f8e33bcbd5c5639f53a29c289 tools: do not apply ccache dependency to xz Since XZ is needed to bootstrap building ccache we must not depend on it, so remove the dependency on ccache to avoid circular dependencies. Signed-off-by: Jo-Philipp Wich --- diff --git a/tools/Makefile b/tools/Makefile index 186c6c4645..1c84d46b5b 100644 --- a/tools/Makefile +++ b/tools/Makefile @@ -89,7 +89,7 @@ ifneq ($(HOST_OS),Linux) endif ifneq ($(CONFIG_CCACHE)$(CONFIG_SDK),) -$(foreach tool, $(filter-out patch,$(tools-y)), $(eval $(curdir)/$(tool)/compile += $(curdir)/ccache/install)) +$(foreach tool, $(filter-out xz patch,$(tools-y)), $(eval $(curdir)/$(tool)/compile += $(curdir)/ccache/install)) tools-y += ccache endif