diff options
| author | Antoine Martin <antoine97.martin@gmail.com> | 2020-10-01 16:08:05 +0200 |
|---|---|---|
| committer | Antoine Martin <antoine97.martin@gmail.com> | 2020-10-06 15:53:58 +0200 |
| commit | 6e06388a7f165a1d532187cafc4346ce55385ca7 (patch) | |
| tree | a942d4f99266eae4d477dd6d05131f9dab4b2081 /src | |
| parent | 5849a7eca90582ee59b67eb09548a2aa424d7f52 (diff) | |
| download | rust-6e06388a7f165a1d532187cafc4346ce55385ca7.tar.gz rust-6e06388a7f165a1d532187cafc4346ce55385ca7.zip | |
Fix suggestions for x.py setup
Diffstat (limited to 'src')
| -rw-r--r-- | src/bootstrap/setup.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bootstrap/setup.rs b/src/bootstrap/setup.rs index 8a77641fbfe..76a554d7cf6 100644 --- a/src/bootstrap/setup.rs +++ b/src/bootstrap/setup.rs @@ -40,9 +40,9 @@ pub fn setup(src_path: &Path, include_name: &str) { println!("`x.py` will now use the configuration at {}", include_path); let suggestions = match include_name { - "codegen" | "compiler" => &["check", "build", "test"][..], + "llvm" | "codegen" | "compiler" => &["check", "build", "test"][..], "library" => &["check", "build", "test library/std", "doc"], - "user" => &["dist", "build"], + "maintainer" | "user" => &["dist", "build"], _ => return, }; |
