aedi: fix modification of os.environ

This commit is contained in:
alexey.lysiuk 2021-08-14 12:27:34 +03:00
parent 8a1524d0d7
commit bc36a95b78
1 changed files with 1 additions and 1 deletions

View File

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