about summary refs log tree commit diff
path: root/src/bootstrap
diff options
context:
space:
mode:
authorMazdak Farrokhzad <twingoow@gmail.com>2019-06-13 01:49:33 +0200
committerGitHub <noreply@github.com>2019-06-13 01:49:33 +0200
commit555b2d92505cedfb433cf13e87d25273cd4c1def (patch)
tree9c3760ba1ad64654e4275b71306d5ac479f3e3fa /src/bootstrap
parentb03ffbc69a284a249be5ab62c89adb1310961bf3 (diff)
parente7b5586cd67b88d5733fd9bc2179d3b3e8829d0a (diff)
downloadrust-555b2d92505cedfb433cf13e87d25273cd4c1def.tar.gz
rust-555b2d92505cedfb433cf13e87d25273cd4c1def.zip
Rollup merge of #61762 - Keruspe:rustbuild-libtest-fix, r=Mark-Simulacrum
rustbuild: fix libtest_stamp

Looks like an obvious copy/paste typo
Diffstat (limited to 'src/bootstrap')
-rw-r--r--src/bootstrap/builder.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bootstrap/builder.rs b/src/bootstrap/builder.rs
index 2281a45e014..cd0a93b0115 100644
--- a/src/bootstrap/builder.rs
+++ b/src/bootstrap/builder.rs
@@ -787,7 +787,7 @@ impl<'a> Builder<'a> {
 
         let libtest_stamp = match cmd {
             "check" | "clippy" | "fix" => check::libtest_stamp(self, cmp, target),
-            _ => compile::libstd_stamp(self, cmp, target),
+            _ => compile::libtest_stamp(self, cmp, target),
         };
 
         let librustc_stamp = match cmd {