From f4bac06bd9e96f0d662396e38777bad3469420f4 Mon Sep 17 00:00:00 2001 From: Nirbheek Chauhan Date: Mon, 31 Aug 2020 13:15:58 +0530 Subject: mcompile: Also support -v for verbose This matches `meson test`, and there's really no other meaning that could be attributed to this, since you would call `meson` to get the version, not the `compile` sub-command. --- mesonbuild/mcompile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'mesonbuild/mcompile.py') diff --git a/mesonbuild/mcompile.py b/mesonbuild/mcompile.py index 5352143..3199f59 100644 --- a/mesonbuild/mcompile.py +++ b/mesonbuild/mcompile.py @@ -263,7 +263,7 @@ def add_arguments(parser: 'argparse.ArgumentParser') -> None: help='The system load average to try to maintain (if supported).' ) parser.add_argument( - '--verbose', + '-v', '--verbose', action='store_true', help='Show more verbose output.' ) -- cgit v1.1