From 2fe4c60ae3f26c75ae45ab092321d07fb98bd52c Mon Sep 17 00:00:00 2001 From: TheQwertiest Date: Tue, 9 Jun 2020 20:14:57 +0300 Subject: [PATCH] Made --help options sorted --- mesonbuild/minit.py | 2 +- mesonbuild/mintro.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/mesonbuild/minit.py b/mesonbuild/minit.py index 4238ecd90..bdbe69b4c 100644 --- a/mesonbuild/minit.py +++ b/mesonbuild/minit.py @@ -139,7 +139,7 @@ def add_arguments(parser): parser.add_argument("-n", "--name", help="project name. default: name of current directory") parser.add_argument("-e", "--executable", help="executable name. default: project name") parser.add_argument("-d", "--deps", help="dependencies, comma-separated") - parser.add_argument("-l", "--language", choices=LANG_SUPPORTED, help="project language. default: autodetected based on source files") + parser.add_argument("-l", "--language", choices=sorted(LANG_SUPPORTED), help="project language. default: autodetected based on source files") parser.add_argument("-b", "--build", action='store_true', help="build after generation") parser.add_argument("--builddir", default='build', help="directory for build") parser.add_argument("-f", "--force", action="store_true", help="force overwrite of existing files and directories.") diff --git a/mesonbuild/mintro.py b/mesonbuild/mintro.py index 8eb659b6e..de8fc5a1b 100644 --- a/mesonbuild/mintro.py +++ b/mesonbuild/mintro.py @@ -80,7 +80,7 @@ def add_arguments(parser): flag = '--' + key.replace('_', '-') parser.add_argument(flag, action='store_true', dest=key, default=False, help=val.desc) - parser.add_argument('--backend', choices=cdata.backendlist, dest='backend', default='ninja', + parser.add_argument('--backend', choices=sorted(cdata.backendlist), dest='backend', default='ninja', help='The backend to use for the --buildoptions introspection.') parser.add_argument('-a', '--all', action='store_true', dest='all', default=False, help='Print all available information.')