build script: modify copy of environment variables instead of dict from os module

This commit is contained in:
alexey.lysiuk 2020-12-18 11:25:07 +02:00
parent 775c30cc56
commit ec686a78a8

View file

@ -87,7 +87,7 @@ class Target(BaseTarget):
self.src_root = ''
self.prefix = None
self.environment = os.environ
self.environment = os.environ.copy()
self.options = CommandLineOptions()
def initialize(self, builder: 'Builder'):