Skip to content

Commit 555b2d9

Browse files
authoredJun 12, 2019
Rollup merge of #61762 - Keruspe:rustbuild-libtest-fix, r=Mark-Simulacrum
rustbuild: fix libtest_stamp Looks like an obvious copy/paste typo
2 parents b03ffbc + e7b5586 commit 555b2d9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/bootstrap/builder.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -787,7 +787,7 @@ impl<'a> Builder<'a> {
787787

788788
let libtest_stamp = match cmd {
789789
"check" | "clippy" | "fix" => check::libtest_stamp(self, cmp, target),
790-
_ => compile::libstd_stamp(self, cmp, target),
790+
_ => compile::libtest_stamp(self, cmp, target),
791791
};
792792

793793
let librustc_stamp = match cmd {

0 commit comments

Comments
 (0)
Please sign in to comment.