diff options
author | Yann E. MORIN <yann.morin.1998@free.fr> | 2014-06-08 16:03:50 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2014-06-08 16:43:22 +0200 |
commit | 4a2db6d19322b46968e63df06b562ec0cbaa2d0c (patch) | |
tree | 029da515bc417e9cfcb6faf7278ae587d4cd69d8 | |
parent | 61dbf4d30684b766731b9a7e09bbaec62874c772 (diff) | |
download | buildroot-4a2db6d19322b46968e63df06b562ec0cbaa2d0c.tar.gz buildroot-4a2db6d19322b46968e63df06b562ec0cbaa2d0c.zip |
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" <yann.morin.1998@free.fr>
Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Cc: Maxime Hadjinlian <maxime.hadjinlian@gmail.com>
Cc: Samuel Martin <s.martin49@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-rwxr-xr-x | support/scripts/graph-depends | 3 |
1 files changed, 3 insertions, 0 deletions
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") |