1
Fork 0

Align boolean option descriptions in configure.py

This commit is contained in:
clubby789 2024-10-19 13:02:37 +00:00
parent b27f33a4d9
commit 28fce83cc6

View file

@ -193,7 +193,8 @@ if '--help' in sys.argv or '-h' in sys.argv:
if option.value: if option.value:
print('\t{:30} {}'.format('--{}=VAL'.format(option.name), option.desc)) print('\t{:30} {}'.format('--{}=VAL'.format(option.name), option.desc))
else: else:
print('\t{:30} {}'.format('--enable-{} OR --disable-{}'.format(option.name, option.name), option.desc)) print('\t--enable-{:25} OR --disable-{}'.format(option.name, option.name))
print('\t\t' + option.desc)
print('') print('')
print('This configure script is a thin configuration shim over the true') print('This configure script is a thin configuration shim over the true')
print('configuration system, `config.toml`. You can explore the comments') print('configuration system, `config.toml`. You can explore the comments')