@@ -529,7 +529,7 @@ impl Step for Rustc {
529
529
530
530
fn should_run ( run : ShouldRun < ' _ > ) -> ShouldRun < ' _ > {
531
531
let builder = run. builder ;
532
- run. krate ( "rustc-main" ) . path ( "compiler" ) . default_condition ( builder. config . docs )
532
+ run. krate ( "rustc-main" ) . path ( "compiler" ) . default_condition ( builder. config . compiler_docs )
533
533
}
534
534
535
535
fn make_run ( run : RunConfig < ' _ > ) {
@@ -560,11 +560,6 @@ impl Step for Rustc {
560
560
} )
561
561
. collect :: < Vec < _ > > ( ) ;
562
562
563
- if !builder. config . compiler_docs && !builder. was_invoked_explicitly :: < Self > ( ) {
564
- builder. info ( "\t skipping - compiler/librustdoc docs disabled" ) ;
565
- return ;
566
- }
567
-
568
563
// This is the intended out directory for compiler documentation.
569
564
let out = builder. compiler_doc_out ( target) ;
570
565
t ! ( fs:: create_dir_all( & out) ) ;
@@ -674,7 +669,8 @@ macro_rules! tool_doc {
674
669
const ONLY_HOSTS : bool = true ;
675
670
676
671
fn should_run( run: ShouldRun <' _>) -> ShouldRun <' _> {
677
- run. krate( $should_run)
672
+ let builder = run. builder;
673
+ run. krate( $should_run) . default_condition( builder. config. compiler_docs)
678
674
}
679
675
680
676
fn make_run( run: RunConfig <' _>) {
@@ -705,11 +701,6 @@ macro_rules! tool_doc {
705
701
706
702
let compiler = builder. compiler( stage, builder. config. build) ;
707
703
708
- if !builder. config. compiler_docs && !builder. was_invoked_explicitly:: <Self >( ) {
709
- builder. info( "\t skipping - compiler/tool docs disabled" ) ;
710
- return ;
711
- }
712
-
713
704
// Build rustc docs so that we generate relative links.
714
705
builder. ensure( Rustc { stage, target } ) ;
715
706
0 commit comments