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>2009-08-04 05:05:31 +0400
committerNathan Letwory <nathan@letworyinteractive.com>2009-08-04 05:05:31 +0400
commitd595f6f2034ff9b74064975f351b7c42a8c651ac (patch)
tree4998ff1e5db5e294caa2c67eb3f84ae014655af3
parent95e08f6bff272162f2199744842a198742c35de2 (diff)
* apparently I forgot to update this one for the python zip copying business. Thanks to JMS for spotting.
-rw-r--r--SConstruct4
1 files changed, 2 insertions, 2 deletions
diff --git a/SConstruct b/SConstruct
index de669e3a95c..7bec9827364 100644
--- a/SConstruct
+++ b/SConstruct
@@ -554,8 +554,8 @@ if env['OURPLATFORM'] in ('win32-vc', 'win32-mingw'):
if env['WITH_BF_PYTHON']:
ver = env["BF_PYTHON_VERSION"].replace(".", "")
- dllsources.append('#release/windows/extra/python' + ver + '.zip')
- dllsources.append('#release/windows/extra/zlib.pyd')
+ dllsources.append('${LCGDIR}/release/python' + ver + '.zip')
+ dllsources.append('${LCGDIR}/release/zlib.pyd')
if env['BF_DEBUG']:
dllsources.append('${BF_PYTHON_LIBPATH}/${BF_PYTHON_LIB}_d.dll')
else: