From 22a6213000c0f5f7f3fbf6da14e717ac1e360452 Mon Sep 17 00:00:00 2001 From: jacob1 Date: Sat, 29 Dec 2012 11:22:49 -0500 Subject: [PATCH] fix gravity.cpp error on windows with scons (but I still can't get it to work) --- SConscript | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SConscript b/SConscript index a8ad0933b..2ac687dad 100644 --- a/SConscript +++ b/SConscript @@ -247,7 +247,7 @@ sources+=Glob("src/simulation/elements/*.cpp") sources+=Glob("src/simulation/tools/*.cpp") if(GetOption('win')): - sources = filter(lambda source: str(source) != 'src/simulation/Gravity.cpp', sources) + sources = filter(lambda source: str(source) != 'src\simulation\Gravity.cpp', sources) SetupSpawn(env)