Merge branch 'xcode6-py3-fix' into 'master'

Xcode6 py3 fix.

See merge request ita1024/waf!2290
This commit is contained in:
ita1024 2020-05-15 06:01:40 +00:00
commit c271a2cb08
1 changed files with 1 additions and 1 deletions

View File

@ -591,7 +591,7 @@ def process_xcode(self):
# The keys represents different build configuration, e.g. Debug, Release and so on..
# Insert our generated build settings to all configuration names
keys = set(settings.keys() + bld.env.PROJ_CONFIGURATION.keys())
keys = set(settings.keys()) | set(bld.env.PROJ_CONFIGURATION.keys())
for k in keys:
if k in settings:
settings[k].update(bldsettings)