Fixed handling of the SCons construction variable "FRAMEWORKS"
This variable is only needed on OS X, but for simplicity, we expect it to be defined (but empty) on other platforms.
This commit is contained in:
parent
86e7723c26
commit
71156434f8
1 changed files with 3 additions and 0 deletions
|
|
@ -148,6 +148,9 @@ if os.name == 'nt':
|
|||
for key,val in env['ENV'].iteritems():
|
||||
env['ENV'][key] = str(val)
|
||||
|
||||
if 'FRAMEWORKS' not in env:
|
||||
env['FRAMEWORKS'] = []
|
||||
|
||||
add_RegressionTest(env)
|
||||
|
||||
class defaults: pass
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue