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.
This commit is contained in:
Manish Goregaokar 2016-10-08 16:52:43 +05:30 committed by GitHub
commit 3e6cc822d3

View file

@ -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),