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/tools
diff options
context:
space:
mode:
authorNathan Letwory <nathan@letworyinteractive.com>2008-11-05 01:46:43 +0300
committerNathan Letwory <nathan@letworyinteractive.com>2008-11-05 01:46:43 +0300
commit2d802627596ba51a2ff7ff56f28c0c14aee559ad (patch)
treec5097eca333d396016b641baca198635ddbfc6df /tools
parenta19366f34a7d619492159d7beb5d459abf583a9d (diff)
=== 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
Diffstat (limited to 'tools')
-rw-r--r--tools/Blender.py6
1 files changed, 3 insertions, 3 deletions
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'])