diff options
| author | clubby789 <jamie@hill-daniel.co.uk> | 2024-10-19 13:02:37 +0000 |
|---|---|---|
| committer | clubby789 <jamie@hill-daniel.co.uk> | 2024-10-19 13:02:37 +0000 |
| commit | 28fce83cc6d9cce7caf1e4f11462ac76c93ee734 (patch) | |
| tree | af1be4586b29ee50812057adaa30ed0cde81cd4d /src/bootstrap/configure.py | |
| parent | b27f33a4d9c42ee6b5347a75a8a990a883437da9 (diff) | |
| download | rust-28fce83cc6d9cce7caf1e4f11462ac76c93ee734.tar.gz rust-28fce83cc6d9cce7caf1e4f11462ac76c93ee734.zip | |
Align boolean option descriptions in `configure.py`
Diffstat (limited to 'src/bootstrap/configure.py')
| -rwxr-xr-x | src/bootstrap/configure.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/bootstrap/configure.py b/src/bootstrap/configure.py index a555a26367d..15137fbb2b5 100755 --- a/src/bootstrap/configure.py +++ b/src/bootstrap/configure.py @@ -193,7 +193,8 @@ if '--help' in sys.argv or '-h' in sys.argv: if option.value: print('\t{:30} {}'.format('--{}=VAL'.format(option.name), option.desc)) 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('This configure script is a thin configuration shim over the true') print('configuration system, `config.toml`. You can explore the comments') |
