4824: Correct "debug_assertion" to "debug_assertions" to match the cfg that the rust debug assert macros use. r=matklad a=woody77

This is for #4823.

Co-authored-by: Aaron Wood <aaronwood@google.com>
This commit is contained in:
bors[bot] 2020-06-10 05:24:18 +00:00 committed by GitHub
commit c9fc7251ca
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -594,7 +594,7 @@ fn get_rustc_cfg_options(target: Option<&str>) -> CfgOptions {
Err(e) => log::error!("failed to get rustc cfgs: {:#}", e), Err(e) => log::error!("failed to get rustc cfgs: {:#}", e),
} }
cfg_options.insert_atom("debug_assertion".into()); cfg_options.insert_atom("debug_assertions".into());
cfg_options cfg_options
} }