about summary refs log tree commit diff
path: root/src/bootstrap/configure.py
diff options
context:
space:
mode:
authorclubby789 <jamie@hill-daniel.co.uk>2024-10-19 13:02:37 +0000
committerclubby789 <jamie@hill-daniel.co.uk>2024-10-19 13:02:37 +0000
commit28fce83cc6d9cce7caf1e4f11462ac76c93ee734 (patch)
treeaf1be4586b29ee50812057adaa30ed0cde81cd4d /src/bootstrap/configure.py
parentb27f33a4d9c42ee6b5347a75a8a990a883437da9 (diff)
downloadrust-28fce83cc6d9cce7caf1e4f11462ac76c93ee734.tar.gz
rust-28fce83cc6d9cce7caf1e4f11462ac76c93ee734.zip
Align boolean option descriptions in `configure.py`
Diffstat (limited to 'src/bootstrap/configure.py')
-rwxr-xr-xsrc/bootstrap/configure.py3
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')