Skip to content

Commit 3e6cc82

Browse files
authored
Rollup merge of #37028 - alexcrichton:fix-deps, r=japaric
rustbuild: Fix dependencies of check-docs step Some of the doc tests depend on `extern crate test`, so depend on libtest instead of libstd here.
2 parents 06c5bd5 + 32089ae commit 3e6cc82

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/bootstrap/step.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -524,7 +524,7 @@ impl<'a> Step<'a> {
524524
self.target(compiler.host).tool_compiletest(compiler.stage)]
525525
}
526526
Source::CheckDocs { compiler } => {
527-
vec![self.libstd(compiler)]
527+
vec![self.libtest(compiler)]
528528
}
529529
Source::CheckErrorIndex { compiler } => {
530530
vec![self.libstd(compiler),

0 commit comments

Comments
 (0)