rustbuild: Don't require cross-compiled error index

All architectures use the same errors, no need to cross-compile a version only
to not look at it.
This commit is contained in:
Alex Crichton 2017-08-28 18:33:01 -07:00
parent 7007a44cf2
commit 1d70b66fe4
1 changed files with 0 additions and 5 deletions

View File

@ -669,11 +669,6 @@ impl Step for ErrorIndex {
let build = builder.build;
let target = self.target;
builder.ensure(compile::Rustc {
compiler: builder.compiler(0, build.build),
target,
});
println!("Documenting error index ({})", target);
let out = build.doc_out(target);
t!(fs::create_dir_all(&out));