From: Yann E. MORIN Date: Sun, 8 Jun 2014 14:03:50 +0000 (+0200) Subject: graph-depends: document the 'transitive' variable X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=4a2db6d19322b46968e63df06b562ec0cbaa2d0c;p=buildroot.git graph-depends: document the 'transitive' variable Although unnecessary (we already have initialisation via the parser), initialise the 'transitive' option, and document it at the same time. Signed-off-by: "Yann E. MORIN" Cc: Thomas Petazzoni Cc: Maxime Hadjinlian Cc: Samuel Martin Signed-off-by: Thomas Petazzoni --- diff --git a/support/scripts/graph-depends b/support/scripts/graph-depends index 0dafd77389..07b9c22444 100755 --- a/support/scripts/graph-depends +++ b/support/scripts/graph-depends @@ -37,6 +37,9 @@ mode = 0 # Limit drawing the dependency graph to this depth. 0 means 'no limit'. max_depth = 0 +# Whether to draw the transitive dependencies +transitive = True + parser = argparse.ArgumentParser(description="Graph pacakges dependencies") parser.add_argument("--package", '-p', metavar="PACKAGE", help="Graph the dependencies of PACKAGE")