Correct "debug_assertion" to "debug_assertions" to match the cfg

option that the rust debug assert macros use.
This commit is contained in:
Aaron Wood 2020-06-09 19:58:39 -07:00
parent 733ef3163c
commit f4ed2da966

View File

@ -600,7 +600,7 @@ fn get_rustc_cfg_options(target: Option<&str>) -> CfgOptions {
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
}