mirror of
https://gitlab.com/ita1024/waf.git
synced 2024-11-25 19:30:04 +01:00
Merge branch 'xcode6-py3-fix' into 'master'
Xcode6 py3 fix. See merge request ita1024/waf!2290
This commit is contained in:
commit
c271a2cb08
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user