From 4cce4ac9907ed58e480a0a9c319a0af96c96108f Mon Sep 17 00:00:00 2001 From: "Yann E. MORIN" Date: Tue, 10 Jun 2014 00:28:56 +0200 Subject: 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" Cc; Thomas Petazzoni Signed-off-by: Peter Korsgaard --- support/scripts/graph-depends | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'support/scripts') diff --git a/support/scripts/graph-depends b/support/scripts/graph-depends index 42a42a8542..29f271a8e3 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() -- cgit v1.2.1