diff options
author | Jo-Philipp Wich <jo@mein.io> | 2016-10-06 15:26:16 +0200 |
---|---|---|
committer | Jo-Philipp Wich <jo@mein.io> | 2016-10-06 15:29:33 +0200 |
commit | 66a62b896624939f8e33bcbd5c5639f53a29c289 (patch) | |
tree | 6398c24b983d21f683f8b037eae46f69712ccba7 /tools/Makefile | |
parent | 27950ddc0e6069b64e40a8caf203b595a58f741b (diff) | |
download | upstream-66a62b896624939f8e33bcbd5c5639f53a29c289.tar.gz upstream-66a62b896624939f8e33bcbd5c5639f53a29c289.tar.bz2 upstream-66a62b896624939f8e33bcbd5c5639f53a29c289.zip |
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/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
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 |