We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
configure.py
1 parent b27f33a commit 28fce83Copy full SHA for 28fce83
src/bootstrap/configure.py
@@ -193,7 +193,8 @@ def is_value_list(key):
193
if option.value:
194
print('\t{:30} {}'.format('--{}=VAL'.format(option.name), option.desc))
195
else:
196
- 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))
197
+ print('\t\t' + option.desc)
198
print('')
199
print('This configure script is a thin configuration shim over the true')
200
print('configuration system, `config.toml`. You can explore the comments')
0 commit comments