rustbuild: Fix a copy/paste error

Fixes `--step librustc`
This commit is contained in:
Alex Crichton 2016-02-24 17:13:23 -08:00
parent 526640668d
commit 189827bd96
1 changed files with 1 additions and 1 deletions

View File

@ -117,7 +117,7 @@ fn add_steps<'a>(build: &'a Build,
let compiler = host.compiler(stage);
match &step[..] {
"libstd" => targets.push(target.libstd(stage, compiler)),
"librustc" => targets.push(target.libstd(stage, compiler)),
"librustc" => targets.push(target.librustc(stage, compiler)),
"rustc" => targets.push(host.rustc(stage)),
"llvm" => targets.push(target.llvm(())),
"compiler-rt" => targets.push(target.compiler_rt(())),