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
diff options
context:
space:
mode:
authorJoshua Leung <aligorith@gmail.com>2009-11-06 11:32:50 +0300
committerJoshua Leung <aligorith@gmail.com>2009-11-06 11:32:50 +0300
commite1e6391a0bc23f4bfdb362b603ccc771c8c8708f (patch)
treeb30f685280d939c6a3e01870d64e4c3e44c95275 /intern/bsp
parentd315af74f0539836d512087bffd57fbc9bcc0c74 (diff)
Fix for scons + mingw compiling
Removed the special exception for booleans lib priority, which was needed in the past to get it compiling ok with the src directory.
Diffstat (limited to 'intern/bsp')
-rw-r--r--intern/bsp/SConscript5
1 files changed, 1 insertions, 4 deletions
diff --git a/intern/bsp/SConscript b/intern/bsp/SConscript
index 6ee888efc8d..ff5a213d7b8 100644
--- a/intern/bsp/SConscript
+++ b/intern/bsp/SConscript
@@ -5,8 +5,5 @@ sources = env.Glob('intern/*.cpp')
incs = 'intern ../container ../moto/include ../memutil'
-if (env['OURPLATFORM'] == 'win32-mingw'):
- env.BlenderLib ('blender_BSP', sources, Split(incs), [], libtype='core', priority=26 )
-else:
- env.BlenderLib ('blender_BSP', sources, Split(incs), [], libtype='core', priority=200 )
+env.BlenderLib ('blender_BSP', sources, Split(incs), [], libtype='core', priority=200 )