From 6e06388a7f165a1d532187cafc4346ce55385ca7 Mon Sep 17 00:00:00 2001 From: Antoine Martin Date: Thu, 1 Oct 2020 16:08:05 +0200 Subject: [PATCH] Fix suggestions for x.py setup --- src/bootstrap/setup.rs | 4 ++-- 1 file 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, }; -- 2.44.0