]> git.lizzy.rs Git - rust.git/blobdiff - src/bootstrap/configure.py
Fix typo in source-based-code-coverage.md
[rust.git] / src / bootstrap / configure.py
index 42f00ce9621743cb3a283355074b07a10b7f4e77..2cabaee68ea670b632e60d5f9312be9451315f55 100755 (executable)
@@ -147,6 +147,8 @@ 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")
 
 # Used on systems where "cc" is unavailable
 v("default-linker", "rust.default-linker", "the default linker")
@@ -349,6 +351,8 @@ for key in known_args:
     elif option.name == 'option-checking':
         # this was handled above
         pass
+    elif option.name == 'dist-compression-formats':
+        set('dist.compression-formats', value.split(','))
     else:
         raise RuntimeError("unhandled option {}".format(option.name))