From 189827bd960fbb6e2e4dad5114ee414af35bb84c Mon Sep 17 00:00:00 2001 From: Alex Crichton Date: Wed, 24 Feb 2016 17:13:23 -0800 Subject: [PATCH] rustbuild: Fix a copy/paste error Fixes `--step librustc` --- src/bootstrap/build/step.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bootstrap/build/step.rs b/src/bootstrap/build/step.rs index 6c0c55fddee..d97bc064c98 100644 --- a/src/bootstrap/build/step.rs +++ b/src/bootstrap/build/step.rs @@ -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(())), -- 2.44.0