diff options
author | Remko Tronçon <git@el-tramo.be> | 2010-09-15 20:23:17 (GMT) |
---|---|---|
committer | Remko Tronçon <git@el-tramo.be> | 2010-09-15 20:23:17 (GMT) |
commit | c84b15a8ea05ed9c9dda7ab36deca82a5302f277 (patch) | |
tree | 227be59557ce3a65db0d0c244764339a83350a64 /3rdParty | |
parent | 03989fd78c6c73989941abb91dc4d51f4c8fee1a (diff) | |
download | swift-c84b15a8ea05ed9c9dda7ab36deca82a5302f277.zip swift-c84b15a8ea05ed9c9dda7ab36deca82a5302f277.tar.bz2 |
Do not compile Snarl interface if Snarl is not available.
Diffstat (limited to '3rdParty')
-rw-r--r-- | 3rdParty/Snarl/SConscript | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/3rdParty/Snarl/SConscript b/3rdParty/Snarl/SConscript index 99900f7..8733390 100644 --- a/3rdParty/Snarl/SConscript +++ b/3rdParty/Snarl/SConscript @@ -3,7 +3,8 @@ Import("env") ################################################################################ # Flags ################################################################################ -if env.get("HAVE_SNARL", True) : + +if env.get("HAVE_SNARL", False) : if env["SCONS_STAGE"] == "flags" : env["SNARL_FLAGS"] = { "CPPPATH": [Dir(".")], |