Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/intern
diff options
context:
space:
mode:
authorMartin Poirier <theeth@yahoo.com>2009-10-27 17:17:29 +0300
committerMartin Poirier <theeth@yahoo.com>2009-10-27 17:17:29 +0300
commit63e3cfb82f5f365c488241fca801dea94ae308bf (patch)
tree891a55ce3bb3286a3404cc7839ae4e61a7d12140 /intern
parentabf7bebac5df53c806048d01e49c86a5f9b169e8 (diff)
ifix syntax error in SConscript
Diffstat (limited to 'intern')
-rw-r--r--intern/ghost/SConscript8
1 files changed, 4 insertions, 4 deletions
diff --git a/intern/ghost/SConscript b/intern/ghost/SConscript
index 9b4ce51965c..d52ffbcfaa9 100644
--- a/intern/ghost/SConscript
+++ b/intern/ghost/SConscript
@@ -32,10 +32,10 @@ elif window_system in ('win32-vc', 'win32-mingw', 'cygwin', 'linuxcross', 'win64
sources.remove('intern' + os.sep + f + 'Carbon.cpp')
elif window_system == 'darwin':
if env['WITH_GHOST_COCOA']:
- for f in pf:
- sources.remove('intern' + os.sep + f + 'Win32.cpp')
- sources.remove('intern' + os.sep + f + 'X11.cpp')
- sources.remove('intern' + os.sep + f + 'Carbon.cpp')
+ for f in pf:
+ sources.remove('intern' + os.sep + f + 'Win32.cpp')
+ sources.remove('intern' + os.sep + f + 'X11.cpp')
+ sources.remove('intern' + os.sep + f + 'Carbon.cpp')
else:
for f in pf:
sources.remove('intern' + os.sep + f + 'Win32.cpp')