diff options
author | Remko Tronçon <git@el-tramo.be> | 2012-09-16 09:10:33 (GMT) |
---|---|---|
committer | Remko Tronçon <git@el-tramo.be> | 2012-09-16 09:10:33 (GMT) |
commit | 33f6cb5944783533bcd157b53cc819d5b0daaafb (patch) | |
tree | 77dd1d25f1924c0b719afa36dfc764262094ff3a /BuildTools/SCons/SConstruct | |
parent | 72634a2e207528a705f1e09dbc8b87e76b6eb580 (diff) | |
download | swift-contrib-33f6cb5944783533bcd157b53cc819d5b0daaafb.zip swift-contrib-33f6cb5944783533bcd157b53cc819d5b0daaafb.tar.bz2 |
Fixed compilation on windows.
Diffstat (limited to 'BuildTools/SCons/SConstruct')
-rw-r--r-- | BuildTools/SCons/SConstruct | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/BuildTools/SCons/SConstruct b/BuildTools/SCons/SConstruct index ff74073..2e8d1cb 100644 --- a/BuildTools/SCons/SConstruct +++ b/BuildTools/SCons/SConstruct @@ -437,7 +437,7 @@ elif env["target"] in ("iphone-device", "iphone-simulator", "xcode") : env["OPENSSL_BUNDLED"] = True env["HAVE_OPENSSL"] = True else : - env["OPENSSL_FLAGS"] = "" + env["OPENSSL_FLAGS"] = {} if env["PLATFORM"] == "win32" : env["HAVE_SCHANNEL"] = True # If we're compiling for Windows and OpenSSL isn't being used, use Schannel |