diff options
author | Yann E. MORIN <yann.morin.1998@free.fr> | 2014-06-10 00:28:56 +0200 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2014-06-13 14:39:48 +0200 |
commit | 4cce4ac9907ed58e480a0a9c319a0af96c96108f (patch) | |
tree | 04543d7f79ac410d8f8c65d6dd8f5f787342f9e8 /support | |
parent | 7e867725acf2f5aedca60985ee530d1530792f78 (diff) |
graphs/depends: do not draw transitive dependencies by default
The transitive dependencies make the graphs barely readable for large
configs, with a large number of packages.
So, just switch to not drawing the transitive dependencies by default.
By popular demand... ;-)
[Peter: reword]
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Cc; Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'support')
-rwxr-xr-x | support/scripts/graph-depends | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/support/scripts/graph-depends b/support/scripts/graph-depends index 42a42a854..29f271a8e 100755 --- a/support/scripts/graph-depends +++ b/support/scripts/graph-depends @@ -48,7 +48,7 @@ parser.add_argument("--colours", "-c", metavar="COLOR_LIST", dest="colours", + " packages, and the host packages, in this order." \ + " Defaults to: 'lightblue,grey,gainsboro'") parser.add_argument("--transitive", dest="transitive", action='store_true', - default=True) + default=False) parser.add_argument("--no-transitive", dest="transitive", action='store_false', help="Draw (do not draw) transitive dependencies") args = parser.parse_args() |