diff options
| author | Alex Crichton <alex@alexcrichton.com> | 2017-08-28 18:33:01 -0700 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2017-08-29 10:30:15 -0700 |
| commit | 1d70b66fe49660006f35a699ef5733e97c0786f0 (patch) | |
| tree | bdffd0797cebbb27d5b443135727e4590ed282c2 | |
| parent | 7007a44cf28dafb11deb595b63fcdfa82cc24a03 (diff) | |
| download | rust-1d70b66fe49660006f35a699ef5733e97c0786f0.tar.gz rust-1d70b66fe49660006f35a699ef5733e97c0786f0.zip | |
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.
| -rw-r--r-- | src/bootstrap/doc.rs | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/bootstrap/doc.rs b/src/bootstrap/doc.rs index 86f5346bea1..b9a52a66793 100644 --- a/src/bootstrap/doc.rs +++ b/src/bootstrap/doc.rs @@ -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)); |
