diff options
author | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2016-05-24 22:59:35 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2016-05-24 23:26:25 +0200 |
commit | 8bf947e0ef62362cda991537520b94a090a652ca (patch) | |
tree | caced230c7ff8a07dfdd7f06bcd06d523b4cbd94 | |
parent | e07a98239969794c2257345b17a604e309a5dbb1 (diff) | |
download | buildroot-8bf947e0ef62362cda991537520b94a090a652ca.tar.gz buildroot-8bf947e0ef62362cda991537520b94a090a652ca.zip |
support/scripts: fix graph-build-time help text
The graph-build-time help text currently looks like this:
usage: graph-build-time [-h] [--type GRAPH_TYPE] [--order GRAPH_ORDER]
[--alternate-colors] [--input OUTPUT] --output OUTPUT
Obviously, naming the parameter for --input as OUTPUT is not a very
good idea, so this commit fixes that to name it "INPUT", as expected.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-rwxr-xr-x | support/scripts/graph-build-time | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/support/scripts/graph-build-time b/support/scripts/graph-build-time index 7eb3e47953..0ba0f2d3a7 100755 --- a/support/scripts/graph-build-time +++ b/support/scripts/graph-build-time @@ -276,7 +276,7 @@ parser.add_argument("--order", '-O', metavar="GRAPH_ORDER", help="Ordering of packages: build or duration (for histogram only)") parser.add_argument("--alternate-colors", '-c', action="store_true", help="Use alternate colour-scheme") -parser.add_argument("--input", '-i', metavar="OUTPUT", +parser.add_argument("--input", '-i', metavar="INPUT", help="Input file (usually $(O)/build/build-time.log)") parser.add_argument("--output", '-o', metavar="OUTPUT", required=True, help="Output file (.pdf or .png extension)") |