diff options
| author | Simon Robertshaw <simon@hardwired.org.uk> | 2012-12-30 12:52:30 (GMT) |
|---|---|---|
| committer | Simon Robertshaw <simon@hardwired.org.uk> | 2012-12-30 12:52:30 (GMT) |
| commit | 1cfc75dba2b20d78ff4c5484d5ef6d13f4d1c636 (patch) | |
| tree | 352751da772facb1c3ee5a99db9f1f192e1557cb /SConscript | |
| parent | 0159c2b5afa7a6fe976858240ead67a7645e242c (diff) | |
| download | powder-1cfc75dba2b20d78ff4c5484d5ef6d13f4d1c636.zip powder-1cfc75dba2b20d78ff4c5484d5ef6d13f4d1c636.tar.gz | |
Fix paths in Sconscripts for filtering out Gravity file
Diffstat (limited to 'SConscript')
| -rw-r--r-- | SConscript | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -247,7 +247,8 @@ 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) + sources = filter(lambda source: str(source) != 'src/simulation/Gravity.cpp', sources) SetupSpawn(env) |
