Skip to content

Commit

Permalink
Merge pull request #2142 from aburgm/patch-2
Browse files Browse the repository at this point in the history
Add SSL_CERT_FILE and REQUESTS_CA_BUNDLE to build environment
  • Loading branch information
msarahan authored Jun 30, 2017
2 parents b779a52 + 893d7a9 commit 68f9f7f
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions conda_build/environ.py
Original file line number Diff line number Diff line change
Expand Up @@ -289,6 +289,7 @@ def conda_build_vars(prefix, config):
'SRC_DIR': src_dir,
'HTTPS_PROXY': os.getenv('HTTPS_PROXY', ''),
'HTTP_PROXY': os.getenv('HTTP_PROXY', ''),
'REQUESTS_CA_BUNDLE': os.getenv('REQUESTS_CA_BUNDLE', ''),
'DIRTY': '1' if config.dirty else '',
'ROOT': root_dir,
}
Expand Down Expand Up @@ -485,6 +486,7 @@ def unix_vars(prefix):
'HOME': os.getenv('HOME', 'UNKNOWN'),
'PKG_CONFIG_PATH': join(prefix, 'lib', 'pkgconfig'),
'CMAKE_GENERATOR': 'Unix Makefiles',
'SSL_CERT_FILE': os.getenv('SSL_CERT_FILE', ''),
}


Expand Down

0 comments on commit 68f9f7f

Please sign in to comment.