patch-src_bootstrap_step_rs 593 B

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