mirror of
https://github.com/ZDoom/zdoom-macos-deps.git
synced 2024-11-10 14:41:43 +00:00
aedi: fix modification of os.environ
This commit is contained in:
parent
8a1524d0d7
commit
bc36a95b78
1 changed files with 1 additions and 1 deletions
|
@ -138,7 +138,7 @@ class Builder(object):
|
||||||
|
|
||||||
def _build(self, target: Target):
|
def _build(self, target: Target):
|
||||||
state = self._state
|
state = self._state
|
||||||
state.environment = os.environ
|
state.environment = os.environ.copy()
|
||||||
state.options = CommandLineOptions()
|
state.options = CommandLineOptions()
|
||||||
|
|
||||||
target.configure(state)
|
target.configure(state)
|
||||||
|
|
Loading…
Reference in a new issue