From 71156434f87cf5af35bb34d11e8ea7e378b6830f Mon Sep 17 00:00:00 2001 From: Ray Speth Date: Tue, 30 Oct 2012 15:30:33 +0000 Subject: [PATCH] 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. --- SConstruct | 3 +++ 1 file changed, 3 insertions(+) diff --git a/SConstruct b/SConstruct index fd374fa88..d5063183e 100644 --- a/SConstruct +++ b/SConstruct @@ -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