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>2007-04-05 08:48:32 +0400
committerNathan Letwory <nathan@letworyinteractive.com>2007-04-05 08:48:32 +0400
commitd31355fa247f6b84a93e480b17843cb3f7b65a6c (patch)
tree4fe407bbab4202bfc94ffa372cd03d15b9fe5752 /SConstruct
parent5e77460a289795972eb3ed3d13455f33a09c0352 (diff)
=== SCons ===
* Fix for [ #6490 ] "Building with Python 2.4 on Win32 doesn't copy the proper python DLL file"
Diffstat (limited to 'SConstruct')
-rw-r--r--SConstruct4
1 files changed, 2 insertions, 2 deletions
diff --git a/SConstruct b/SConstruct
index 97930bd5a32..92ca04fc12f 100644
--- a/SConstruct
+++ b/SConstruct
@@ -582,9 +582,9 @@ if env['OURPLATFORM'] in ('win32-vc', 'win32-mingw'):
'${LCGDIR}/zlib/lib/zlib.dll',
'${LCGDIR}/tiff/lib/libtiff.dll']
if env['BF_DEBUG']:
- dllsources.append('${LCGDIR}/python/lib/python25_d.dll')
+ dllsources.append('${LCGDIR}/python/lib/${BF_PYTHON_LIB}_d.dll')
else:
- dllsources.append('${LCGDIR}/python/lib/python25.dll')
+ dllsources.append('${LCGDIR}/python/lib/${BF_PYTHON_LIB}.dll')
if env['OURPLATFORM'] == 'win32-mingw':
dllsources += ['${LCGDIR}/pthreads/lib/pthreadGC2.dll']
else: