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>2014-04-30 16:27:31 +0400
committerCampbell Barton <ideasman42@gmail.com>2014-04-30 16:29:28 +0400
commit417efb0e8bee0a811753dd1b1f97275570307f54 (patch)
tree9e1c297dddf576cbba44c492c67956b41b85e4c5 /build_files/scons/config/win32-mingw-config.py
parentdb32e6c4f77f7168b2261ac7d2070414e8153f95 (diff)
Remove hard coded Python version for scons
note: this isn't best way of extracting version without '.'
Diffstat (limited to 'build_files/scons/config/win32-mingw-config.py')
-rw-r--r--build_files/scons/config/win32-mingw-config.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/build_files/scons/config/win32-mingw-config.py b/build_files/scons/config/win32-mingw-config.py
index 470987bfad6..b3b7f98d754 100644
--- a/build_files/scons/config/win32-mingw-config.py
+++ b/build_files/scons/config/win32-mingw-config.py
@@ -7,7 +7,7 @@ WITH_BF_STATICPYTHON = False
BF_PYTHON_INC = '${BF_PYTHON}/include/python${BF_PYTHON_VERSION}'
BF_PYTHON_BINARY = 'python'
BF_PYTHON_LIB = 'python${BF_PYTHON_VERSION[0]}${BF_PYTHON_VERSION[2]}mw'
-BF_PYTHON_DLL = 'python33'
+BF_PYTHON_DLL = 'python${BF_PYTHON_VERSION[0]}${BF_PYTHON_VERSION[2]}'
BF_PYTHON_LIBPATH = '${BF_PYTHON}/lib'
BF_PYTHON_LIB_STATIC = '${BF_PYTHON}/lib/libpython${BF_PYTHON_VERSION[0]}${BF_PYTHON_VERSION[2]}.a'