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:
authorNathan Letwory <nathan@letworyinteractive.com>2008-11-07 22:48:12 +0300
committerNathan Letwory <nathan@letworyinteractive.com>2008-11-07 22:48:12 +0300
commitade1495f0e6951bda3ae9852414d86e7c1fd624e (patch)
tree3576d94ad420f85d6f096e544d4c56518b3c42a9
parent6eaaf2ce7254235081d21cde3f2815f8050faf21 (diff)
* fix for typo found by brecht
-rw-r--r--tools/Blender.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/tools/Blender.py b/tools/Blender.py
index a1cf9cec073..894922032fa 100644
--- a/tools/Blender.py
+++ b/tools/Blender.py
@@ -396,7 +396,6 @@ class BlenderEnvironment(SConsEnvironment):
print bc.HEADER+'Configuring resource '+bc.ENDC+bc.OKGREEN+libname+bc.ENDC
lenv = self.Clone()
res = lenv.RES('#'+root_build_dir+'lib/'+libname, source)
-
SConsEnvironment.Default(self, res)
resources.append(res)
@@ -435,7 +434,7 @@ class BlenderEnvironment(SConsEnvironment):
if cxx_compileflags:
lenv.Append(CXXFLAGS = cxx_compileflags)
lenv.Append(CFLAGS = lenv['C_WARN'])
- lenv.Append(CXXFLAGS = lenv['CC_WARN'])
+ lenv.Append(CCFLAGS = lenv['CC_WARN'])
lenv.Append(CXXFLAGS = lenv['CXX_WARN'])
lib = lenv.Library(target= '#'+root_build_dir+'lib/'+libname, source=sources)
SConsEnvironment.Default(self, lib) # we add to default target, because this way we get some kind of progress info during build