Skip to content

Commit 93734e9

Browse files
committed
Make debuginfo-tools always default false
1 parent bc7403d commit 93734e9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/bootstrap/config.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -586,7 +586,7 @@ impl Config {
586586
};
587587
config.rust_debuginfo_lines = debuginfo_lines.unwrap_or(default);
588588
config.rust_debuginfo_only_std = debuginfo_only_std.unwrap_or(default);
589-
config.rust_debuginfo_tools = debuginfo_tools.unwrap_or(default);
589+
config.rust_debuginfo_tools = debuginfo_tools.unwrap_or(false);
590590

591591
let default = debug == Some(true);
592592
config.debug_jemalloc = debug_jemalloc.unwrap_or(default);

0 commit comments

Comments
 (0)