Remove more variables from build environment
Remove the LIBRARY_PATH and CPATH environment variables before building a package.
This commit is contained in:
parent
e837be1af9
commit
31e9ded768
@ -266,6 +266,8 @@ def set_build_environment_variables(pkg, env):
|
||||
# can affect how some packages find libraries. We want to make
|
||||
# sure that builds never pull in unintended external dependencies.
|
||||
env.unset('LD_LIBRARY_PATH')
|
||||
env.unset('LIBRARY_PATH')
|
||||
env.unset('CPATH')
|
||||
env.unset('LD_RUN_PATH')
|
||||
env.unset('DYLD_LIBRARY_PATH')
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user