about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorbinarycat <binarycat@envs.net>2025-01-17 14:31:24 -0600
committerbinarycat <binarycat@envs.net>2025-01-17 14:31:24 -0600
commitd58540df44a678dc32e4fe6f2fc94224844a3516 (patch)
tree0bd062286bc2fb6cb41afa8cc88b760563dbf96e /src
parentbcd0683e5dce1945b5d940714742e7502883bb5c (diff)
downloadrust-d58540df44a678dc32e4fe6f2fc94224844a3516.tar.gz
rust-d58540df44a678dc32e4fe6f2fc94224844a3516.zip
add src/librustdoc and src/rustdoc-json-types to RUSTC_IF_UNCHANGED_ALLOWED_PATHS
fixes https://github.com/rust-lang/rust/issues/135650
Diffstat (limited to 'src')
-rw-r--r--src/bootstrap/src/core/config/config.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/bootstrap/src/core/config/config.rs b/src/bootstrap/src/core/config/config.rs
index 026380a46c6..1c49063ef5c 100644
--- a/src/bootstrap/src/core/config/config.rs
+++ b/src/bootstrap/src/core/config/config.rs
@@ -42,6 +42,8 @@ use crate::utils::helpers::{self, exe, output, t};
 #[rustfmt::skip] // We don't want rustfmt to oneline this list
 pub(crate) const RUSTC_IF_UNCHANGED_ALLOWED_PATHS: &[&str] = &[
     ":!src/tools",
+    ":!src/librustdoc",
+    ":!src/rustdoc-json-types",
     ":!tests",
     ":!triagebot.toml",
 ];