diff options
| author | Josh Stone <jistone@redhat.com> | 2018-04-13 21:58:21 -0700 |
|---|---|---|
| committer | Josh Stone <jistone@redhat.com> | 2018-04-13 21:58:21 -0700 |
| commit | 93734e9c46e30acc9a51f19c56511ce8516b6855 (patch) | |
| tree | a1788a71c7f39212c5815aab4449c114e314265b /src | |
| parent | bc7403d067b3e2a154df1ef088377cb2a75f429c (diff) | |
| download | rust-93734e9c46e30acc9a51f19c56511ce8516b6855.tar.gz rust-93734e9c46e30acc9a51f19c56511ce8516b6855.zip | |
Make debuginfo-tools always default false
Diffstat (limited to 'src')
| -rw-r--r-- | src/bootstrap/config.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bootstrap/config.rs b/src/bootstrap/config.rs index 95d138b9fab..1b4b2c5fb2a 100644 --- a/src/bootstrap/config.rs +++ b/src/bootstrap/config.rs @@ -586,7 +586,7 @@ impl Config { }; config.rust_debuginfo_lines = debuginfo_lines.unwrap_or(default); config.rust_debuginfo_only_std = debuginfo_only_std.unwrap_or(default); - config.rust_debuginfo_tools = debuginfo_tools.unwrap_or(default); + config.rust_debuginfo_tools = debuginfo_tools.unwrap_or(false); let default = debug == Some(true); config.debug_jemalloc = debug_jemalloc.unwrap_or(default); |
