From: Yann E. MORIN Date: Sun, 3 Mar 2019 10:16:32 +0000 (+0100) Subject: support/graph-depends: also cut on host-tar X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=3311aa8cf4ee5935a50990e02c609606e160219d;p=buildroot.git support/graph-depends: also cut on host-tar When host-tar is needed, it is a mandatory dependency of all packages. As such, drawing the dependency lines toward host-tar would uselessly clutter the graph. So, like for the skeleton and host-skeleton, we cut the dependency chains toward host-tar. Signed-off-by: "Yann E. MORIN" Cc: Thomas Petazzoni Signed-off-by: Thomas Petazzoni --- diff --git a/support/scripts/graph-depends b/support/scripts/graph-depends index c3e5d83ee8..3143c61cc4 100755 --- a/support/scripts/graph-depends +++ b/support/scripts/graph-depends @@ -172,7 +172,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'] +MANDATORY_DEPS = ['toolchain', 'skeleton', 'host-skeleton', 'host-tar'] # This function removes the dependency on some 'mandatory' package, like the