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:
Ray Speth 2012-10-30 15:30:33 +00:00
parent 86e7723c26
commit 71156434f8

View file

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