From e7b5586cd67b88d5733fd9bc2179d3b3e8829d0a Mon Sep 17 00:00:00 2001 From: Marc-Antoine Perennou Date: Wed, 5 Jun 2019 15:41:44 +0200 Subject: [PATCH] rustbuild: fix libtest_stamp Signed-off-by: Marc-Antoine Perennou --- src/bootstrap/builder.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bootstrap/builder.rs b/src/bootstrap/builder.rs index 2281a45e014a9..cd0a93b01150c 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 {