From 2d802627596ba51a2ff7ff56f28c0c14aee559ad Mon Sep 17 00:00:00 2001 From: Nathan Letwory Date: Tue, 4 Nov 2008 22:46:43 +0000 Subject: === SCons === * BlenderLib now expects lists for all compiler related flags (release, profile, debug, warn). I changed the default config files, but do double-check your user-config files, esp. if you did a full copy of an old default platform config --- tools/Blender.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'tools') diff --git a/tools/Blender.py b/tools/Blender.py index 5d123100e3b..857d5c4d780 100644 --- a/tools/Blender.py +++ b/tools/Blender.py @@ -417,9 +417,9 @@ class BlenderEnvironment(SConsEnvironment): if lenv['WITH_BF_BULLET']: lenv.Append(CPPDEFINES=['WITH_BULLET=1']) if lenv['BF_DEBUG'] or (libname in quickdebug): - lenv.Append(CFLAGS = Split(lenv['BF_DEBUG_CFLAGS'])) - lenv.Append(CCFLAGS = Split(lenv['BF_DEBUG_CCFLAGS'])) - lenv.Append(CXXFLAGS = Split(lenv['BF_DEBUG_CXXFLAGS'])) + lenv.Append(CFLAGS = lenv['BF_DEBUG_CFLAGS']) + lenv.Append(CCFLAGS = lenv['BF_DEBUG_CCFLAGS']) + lenv.Append(CXXFLAGS = lenv['BF_DEBUG_CXXFLAGS']) else: lenv.Append(CFLAGS = lenv['REL_CFLAGS']) lenv.Append(CCFLAGS = lenv['REL_CCFLAGS']) -- cgit v1.2.3