From 57e7196e56749fb1f55a5ca03a745251f1cb673b Mon Sep 17 00:00:00 2001 From: jacob1 Date: Mon, 20 Feb 2017 19:20:21 -0500 Subject: [PATCH] fix sconscript fail --- SConscript | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SConscript b/SConscript index 928eed6ce0..bdb77b119d 100644 --- a/SConscript +++ b/SConscript @@ -530,7 +530,7 @@ if not GetOption('nolua') and not GetOption('renderer'): if platform == "Windows": sources += env.RES('resources/powder-res.rc') - if not not msvc: + if not msvc: sources = filter(lambda source: not 'src\\simulation\\Gravity.cpp' in str(source), sources) sources = filter(lambda source: not 'src/simulation/Gravity.cpp' in str(source), sources) envCopy = env.Clone()