Skip to content

Commit

Permalink
Rollup merge of rust-lang#61762 - Keruspe:rustbuild-libtest-fix, r=Ma…
Browse files Browse the repository at this point in the history
…rk-Simulacrum

rustbuild: fix libtest_stamp

Looks like an obvious copy/paste typo
  • Loading branch information
Centril authored Jun 12, 2019
2 parents 4bcf433 + e7b5586 commit 64f545b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/bootstrap/builder.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 64f545b

Please sign in to comment.