diff options
| author | Mazdak Farrokhzad <twingoow@gmail.com> | 2019-06-13 01:49:33 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-06-13 01:49:33 +0200 |
| commit | 555b2d92505cedfb433cf13e87d25273cd4c1def (patch) | |
| tree | 9c3760ba1ad64654e4275b71306d5ac479f3e3fa /src/bootstrap | |
| parent | b03ffbc69a284a249be5ab62c89adb1310961bf3 (diff) | |
| parent | e7b5586cd67b88d5733fd9bc2179d3b3e8829d0a (diff) | |
| download | rust-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.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 { |
