about summary refs log tree commit diff
path: root/src/bootstrap
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2016-10-07 12:28:54 -0700
committerAlex Crichton <alex@alexcrichton.com>2016-10-07 12:28:54 -0700
commit32089ae2c6eb37339e4f90e29057d92fe45219b8 (patch)
tree953235cc849038bbdde224d3a87f8c228aceb731 /src/bootstrap
parentca76c7e0148f87876dbf8ad1f7dd13fb9f268481 (diff)
downloadrust-32089ae2c6eb37339e4f90e29057d92fe45219b8.tar.gz
rust-32089ae2c6eb37339e4f90e29057d92fe45219b8.zip
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.
Diffstat (limited to 'src/bootstrap')
-rw-r--r--src/bootstrap/step.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bootstrap/step.rs b/src/bootstrap/step.rs
index 22539b31ef2..3bf0f211921 100644
--- a/src/bootstrap/step.rs
+++ b/src/bootstrap/step.rs
@@ -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),