diff --git a/mesonbuild/minstall.py b/mesonbuild/minstall.py index 93324d94f..860826bf1 100644 --- a/mesonbuild/minstall.py +++ b/mesonbuild/minstall.py @@ -78,7 +78,7 @@ def add_arguments(parser: argparse.ArgumentParser) -> None: help='Do not print every file that was installed.') parser.add_argument('--destdir', default=None, help='Sets or overrides DESTDIR environment. (Since 0.57.0)') - parser.add_argument('--dry-run', '-n', action='store_true', + parser.add_argument('-n', '--dry-run', action='store_true', help='Doesn\'t actually install, but print logs. (Since 0.57.0)') parser.add_argument('--skip-subprojects', nargs='?', const='*', default='', help='Do not install files from given subprojects. (Since 0.58.0)')