From e48a4db4f04abd0be13a7ba3f52c8e12af6d61d0 Mon Sep 17 00:00:00 2001 From: Joshua Leung Date: Tue, 23 Dec 2008 22:40:25 +0000 Subject: [PATCH] 2.5 scons compile error fix for bsp lib --- intern/bsp/SConscript | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/intern/bsp/SConscript b/intern/bsp/SConscript index 0d1b74ea2ca..2ecc280f135 100644 --- a/intern/bsp/SConscript +++ b/intern/bsp/SConscript @@ -6,7 +6,7 @@ sources = env.Glob('intern/*.cpp') incs = 'intern ../container ../moto/include ../memutil' if (env['OURPLATFORM'] == 'win32-mingw'): - env.BlenderLib ('blender_BSP', sources, Split(incs), [], libtype=['common','intern'], priority=[26,26] ) + env.BlenderLib ('blender_BSP', sources, Split(incs), [], libtype='core', priority=26 ) else: env.BlenderLib ('blender_BSP', sources, Split(incs), [], libtype='core', priority=20 )