Skip to content

Commit

Permalink
Rollup merge of rust-lang#37028 - alexcrichton:fix-deps, r=japaric
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
Manishearth authored Oct 8, 2016
2 parents 06c5bd5 + 32089ae commit 3e6cc82
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/bootstrap/step.rs
Original file line number Diff line number Diff line change
Expand Up @@ -524,7 +524,7 @@ impl<'a> Step<'a> {
self.target(compiler.host).tool_compiletest(compiler.stage)]
}
Source::CheckDocs { compiler } => {
vec![self.libstd(compiler)]
vec![self.libtest(compiler)]
}
Source::CheckErrorIndex { compiler } => {
vec![self.libstd(compiler),
Expand Down

0 comments on commit 3e6cc82

Please sign in to comment.