From: Francois Perrad Date: Tue, 1 Oct 2019 16:34:58 +0000 (+0200) Subject: support/scripts/graph-depends: cut on host-ccache X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=602f0061ff7ac22f111893c21a1d6dab68487e02;p=buildroot.git support/scripts/graph-depends: cut on host-ccache When selected, host-ccache is a dependency of almost all packages. As such, it clutters the dependency graph uselessly. Signed-off-by: Francois Perrad Reviewed-by: Yann E. MORIN Signed-off-by: Thomas Petazzoni --- 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