From: Peter Korsgaard Date: Mon, 3 May 2010 13:13:19 +0000 (+0200) Subject: ccache: fix ccache-target dependencies X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=ccb58a730dfffb2d802230ebf6c83569657b4c1e;p=buildroot.git ccache: fix ccache-target dependencies Ccache for the target doesn't make sense without a toolchain, so make it depend on it. Signed-off-by: Peter Korsgaard --- diff --git a/toolchain/ccache/Config.in.2 b/toolchain/ccache/Config.in.2 index f7af00d05a..6a6c78915e 100644 --- a/toolchain/ccache/Config.in.2 +++ b/toolchain/ccache/Config.in.2 @@ -2,6 +2,7 @@ config BR2_PACKAGE_CCACHE_TARGET bool "ccache" + depends on BR2_PACKAGE_GCC_TARGET help ccache is a compiler cache. It speeds up recompilation of C/C++ code by caching previous compiles and detecting when