Remove unused target_env from boring-sys build config
This commit is contained in:
parent
44f8f72a16
commit
59ef71327f
|
|
@ -8,7 +8,6 @@ pub(crate) struct Config {
|
|||
pub(crate) host: String,
|
||||
pub(crate) target: String,
|
||||
pub(crate) target_arch: String,
|
||||
pub(crate) target_env: String,
|
||||
pub(crate) target_os: String,
|
||||
pub(crate) features: Features,
|
||||
pub(crate) env: Env,
|
||||
|
|
@ -42,7 +41,6 @@ impl Config {
|
|||
let host = env::var("HOST").unwrap();
|
||||
let target = env::var("TARGET").unwrap();
|
||||
let target_arch = env::var("CARGO_CFG_TARGET_ARCH").unwrap();
|
||||
let target_env = env::var("CARGO_CFG_TARGET_ENV").unwrap();
|
||||
let target_os = env::var("CARGO_CFG_TARGET_OS").unwrap();
|
||||
|
||||
let features = Features::from_env();
|
||||
|
|
@ -58,7 +56,6 @@ impl Config {
|
|||
host,
|
||||
target,
|
||||
target_arch,
|
||||
target_env,
|
||||
target_os,
|
||||
features,
|
||||
env,
|
||||
|
|
|
|||
Loading…
Reference in New Issue