From 66a62b896624939f8e33bcbd5c5639f53a29c289 Mon Sep 17 00:00:00 2001 From: Jo-Philipp Wich Date: Thu, 6 Oct 2016 15:26:16 +0200 Subject: [PATCH] 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 --- tools/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.30.2