From e1e6391a0bc23f4bfdb362b603ccc771c8c8708f Mon Sep 17 00:00:00 2001 From: Joshua Leung Date: Fri, 6 Nov 2009 08:32:50 +0000 Subject: [PATCH] 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. --- intern/bsp/SConscript | 5 +---- 1 file changed, 1 insertion(+), 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 )