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:
authorCampbell Barton <ideasman42@gmail.com>2008-11-17 13:43:12 +0300
committerCampbell Barton <ideasman42@gmail.com>2008-11-17 13:43:12 +0300
commit3a1cfa50151f2a157b15774dd30a6f285cb4fa87 (patch)
tree891957fe1ee8aa8bd1dc4d1b25c62c56f1cccbe0 /tools/Blender.py
parent0bee65b624c7e6a1dd899f4f43cc1c2119f03c2d (diff)
Added BF_PROFILE_LINKFLAGS, Compiling with BF_PROFILE=1 was also throwing a python error.
Diffstat (limited to 'tools/Blender.py')
-rw-r--r--tools/Blender.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/Blender.py b/tools/Blender.py
index 3b5e33eda59..97b855c630b 100644
--- a/tools/Blender.py
+++ b/tools/Blender.py
@@ -476,7 +476,7 @@ class BlenderEnvironment(SConsEnvironment):
lenv.Append(LINKFLAGS = lenv['BF_PYTHON_LINKFLAGS'])
lenv.Append(LINKFLAGS = lenv['BF_OPENGL_LINKFLAGS'])
if lenv['BF_PROFILE']:
- lenv.Append(LINKFLAGS = lenv['BF_PROFILE_FLAGS'])
+ lenv.Append(LINKFLAGS = lenv['BF_PROFILE_LINKFLAGS'])
lenv.Append(CPPPATH=includes)
if root_build_dir[0]==os.sep or root_build_dir[1]==':':
lenv.Append(LIBPATH=root_build_dir + '/lib')