diff options
author | Nirbheek Chauhan <nirbheek@centricular.com> | 2020-08-31 13:15:58 +0530 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2020-08-31 22:59:57 +0300 |
commit | f4bac06bd9e96f0d662396e38777bad3469420f4 (patch) | |
tree | a333af171584a270447b397b72381d3efe443a1f | |
parent | 6f3c8667ed91b9c62def2b2fed45a985a8de1890 (diff) | |
download | meson-f4bac06bd9e96f0d662396e38777bad3469420f4.zip meson-f4bac06bd9e96f0d662396e38777bad3469420f4.tar.gz meson-f4bac06bd9e96f0d662396e38777bad3469420f4.tar.bz2 |
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.
-rw-r--r-- | mesonbuild/mcompile.py | 2 |
1 files changed, 1 insertions, 1 deletions
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.' ) |