[Buildroot] [git commit] support/scripts/graph-depends: cut on host-ccache

Thomas Petazzoni thomas.petazzoni at bootlin.com
Wed Oct 2 19:07:14 UTC 2019


commit: https://git.buildroot.net/buildroot/commit/?id=602f0061ff7ac22f111893c21a1d6dab68487e02
branch: https://git.buildroot.net/buildroot/commit/?id=refs/heads/master

When selected, host-ccache is a dependency of almost all packages.
As such, it clutters the dependency graph uselessly.

Signed-off-by: Francois Perrad <francois.perrad at gadz.org>
Reviewed-by: Yann E. MORIN <yann.morin.1998 at free.fr>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni at bootlin.com>
---
 support/scripts/graph-depends | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/support/scripts/graph-depends b/support/scripts/graph-depends
index 3de09b1209..d42bebce9d 100755
--- a/support/scripts/graph-depends
+++ b/support/scripts/graph-depends
@@ -115,7 +115,7 @@ def remove_transitive_deps(pkg, deps):
 
 # List of dependencies that all/many packages have, and that we want
 # to trim when generating the dependency graph.
-MANDATORY_DEPS = ['toolchain', 'skeleton', 'host-skeleton', 'host-tar', 'host-gzip']
+MANDATORY_DEPS = ['toolchain', 'skeleton', 'host-skeleton', 'host-tar', 'host-gzip', 'host-ccache']
 
 
 # This function removes the dependency on some 'mandatory' package, like the


More information about the buildroot mailing list