diff options
| author | Marc-Antoine Perennou <Marc-Antoine@Perennou.com> | 2019-06-05 15:41:44 +0200 |
|---|---|---|
| committer | Marc-Antoine Perennou <Marc-Antoine@Perennou.com> | 2019-06-12 10:18:16 +0200 |
| commit | e7b5586cd67b88d5733fd9bc2179d3b3e8829d0a (patch) | |
| tree | 9a6a2d9e1d2cc7ebf87d7a55888ea45518b1897c | |
| parent | 05083c2dee278f79988fc4367c29f1a9b5a2d275 (diff) | |
| download | rust-e7b5586cd67b88d5733fd9bc2179d3b3e8829d0a.tar.gz rust-e7b5586cd67b88d5733fd9bc2179d3b3e8829d0a.zip | |
rustbuild: fix libtest_stamp
Signed-off-by: Marc-Antoine Perennou <Marc-Antoine@Perennou.com>
| -rw-r--r-- | src/bootstrap/builder.rs | 2 |
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 { |
