From 5ebb821fa9f845e8edd854cbf15ace5dc36a61a4 Mon Sep 17 00:00:00 2001 From: Eric Huss Date: Sat, 27 Jul 2024 07:57:50 -0700 Subject: [PATCH] Fix mistake setting ONLY_HOSTS for Reference. This was a copy/paste mistake. --- src/bootstrap/src/core/build_steps/doc.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/bootstrap/src/core/build_steps/doc.rs b/src/bootstrap/src/core/build_steps/doc.rs index 78e6e7af687e..1fbc78a94dfa 100644 --- a/src/bootstrap/src/core/build_steps/doc.rs +++ b/src/bootstrap/src/core/build_steps/doc.rs @@ -1237,7 +1237,6 @@ pub struct Reference { impl Step for Reference { type Output = (); const DEFAULT: bool = true; - const ONLY_HOSTS: bool = true; fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_> { let builder = run.builder;