Remove unused target_env from boring-sys build config

This commit is contained in:
Chris Eager 2023-11-13 17:38:42 -06:00 committed by Anthony Ramine
parent 44f8f72a16
commit 59ef71327f
1 changed files with 0 additions and 3 deletions

View File

@ -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,