about summary refs log tree commit diff
path: root/src/bootstrap/configure.py
diff options
context:
space:
mode:
authoryukang <moorekang@gmail.com>2023-04-20 00:48:36 +0800
committeryukang <moorekang@gmail.com>2023-04-27 00:15:56 +0800
commit589877cef1f859dd1a10d6e0cf84d5dc7659c79d (patch)
tree01174380de19c39cbde99e63ac87b075ba6c4944 /src/bootstrap/configure.py
parentd8faf3eb3f4a4b3d1c2908fb3868a7108bebe88a (diff)
downloadrust-589877cef1f859dd1a10d6e0cf84d5dc7659c79d.tar.gz
rust-589877cef1f859dd1a10d6e0cf84d5dc7659c79d.zip
Fix help message of option for checking List
Diffstat (limited to 'src/bootstrap/configure.py')
-rwxr-xr-xsrc/bootstrap/configure.py7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/bootstrap/configure.py b/src/bootstrap/configure.py
index fc105b1fded..c1ea9dd0ce3 100755
--- a/src/bootstrap/configure.py
+++ b/src/bootstrap/configure.py
@@ -153,8 +153,7 @@ v("experimental-targets", "llvm.experimental-targets",
   "experimental LLVM targets to build")
 v("release-channel", "rust.channel", "the name of the release channel to build")
 v("release-description", "rust.description", "optional descriptive string for version output")
-v("dist-compression-formats", None,
-  "comma-separated list of compression formats to use")
+v("dist-compression-formats", None, "List of compression formats to use")
 
 # Used on systems where "cc" is unavailable
 v("default-linker", "rust.default-linker", "the default linker")
@@ -168,8 +167,8 @@ o("extended", "build.extended", "build an extended rust tool set")
 v("tools", None, "List of extended tools will be installed")
 v("codegen-backends", None, "List of codegen backends to build")
 v("build", "build.build", "GNUs ./configure syntax LLVM build triple")
-v("host", None, "GNUs ./configure syntax LLVM host triples")
-v("target", None, "GNUs ./configure syntax LLVM target triples")
+v("host", None, "List of GNUs ./configure syntax LLVM host triples")
+v("target", None, "List of GNUs ./configure syntax LLVM target triples")
 
 v("set", None, "set arbitrary key/value pairs in TOML configuration")