1234567891011121314 |
- $OpenBSD: patch-src_bootstrap_step_rs,v 1.2 2017/05/05 11:40:29 landry Exp $
- Require having building rustdoc before trying to build docs.
- --- src/bootstrap/step.rs.orig Mon Apr 24 20:53:45 2017
- +++ src/bootstrap/step.rs Wed Apr 26 08:43:00 2017
- @@ -614,7 +614,7 @@ pub fn build_rules<'a>(build: &'a Build) -> Rules {
- s.name("rustc")
- .host(&build.config.build)
- .target(&build.config.build)
- - .stage(0)
- + .stage(2)
- })
- .default(build.config.docs)
- .run(move |s| doc::standalone(build, s.target));
|