rustbuild: Fix stage1 rustdoc

Just always build stage1 rustdoc, it's really not that much more to build as
it's essentially just one library.
This commit is contained in:
Alex Crichton
2016-03-07 23:21:05 -08:00
parent defd1b3392
commit 16fefc5ead
5 changed files with 5 additions and 13 deletions

View File

@@ -25,7 +25,7 @@ debug-assertions = false
[dependencies]
rustc_back = { path = "../librustc_back" }
rustc_driver = { path = "../librustc_driver" }
rustdoc = { path = "../librustdoc", optional = true }
rustdoc = { path = "../librustdoc" }
[features]
jemalloc = ["rustc_back/jemalloc"]