summaryrefslogtreecommitdiff
path: root/tools/Makefile
diff options
context:
space:
mode:
authorJo-Philipp Wich <jo@mein.io>2016-10-06 15:26:16 +0200
committerJo-Philipp Wich <jo@mein.io>2016-10-06 15:29:33 +0200
commit66a62b896624939f8e33bcbd5c5639f53a29c289 (patch)
tree6398c24b983d21f683f8b037eae46f69712ccba7 /tools/Makefile
parent27950ddc0e6069b64e40a8caf203b595a58f741b (diff)
downloadmtk-20170518-66a62b896624939f8e33bcbd5c5639f53a29c289.zip
mtk-20170518-66a62b896624939f8e33bcbd5c5639f53a29c289.tar.gz
mtk-20170518-66a62b896624939f8e33bcbd5c5639f53a29c289.tar.bz2
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 <jo@mein.io>
Diffstat (limited to 'tools/Makefile')
-rw-r--r--tools/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/Makefile b/tools/Makefile
index 186c6c4..1c84d46 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