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/config
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2009-05-07 01:47:24 +0400
committerCampbell Barton <ideasman42@gmail.com>2009-05-07 01:47:24 +0400
commit3d60c4e746f08a3a7e583ea4461122f3358e21da (patch)
treecd3a2c3813b09d8f1fa65a1c77ae0affa396aa4f /config
parentcf93cad415e6b4f3952220c69977f74d29fb6533 (diff)
[#18702] FBX exported hemi light crashes maya
- bugfix, off by 1 when clamping lamp types, caused blender to write an invalid lamp type - error in last commit (renamed function)
Diffstat (limited to 'config')
-rw-r--r--config/linux2-config.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/config/linux2-config.py b/config/linux2-config.py
index 22210f0218d..b0c989f1b5c 100644
--- a/config/linux2-config.py
+++ b/config/linux2-config.py
@@ -13,7 +13,7 @@ def py_version_string():
return '%d.%d' % (ver[0], ver[1])
BF_PYTHON = '/usr'
-BF_PYTHON_VERSION = get_py_version_string()
+BF_PYTHON_VERSION = py_version_string()
WITH_BF_STATICPYTHON = False
BF_PYTHON_INC = '${BF_PYTHON}/include/python${BF_PYTHON_VERSION}'
BF_PYTHON_BINARY = '${BF_PYTHON}/bin/python${BF_PYTHON_VERSION}'