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/tools
diff options
context:
space:
mode:
authorJoseph Eagar <joeedh@gmail.com>2008-02-26 03:04:54 +0300
committerJoseph Eagar <joeedh@gmail.com>2008-02-26 03:04:54 +0300
commit31b04490d1f3bff222ad963359e56705694c4e59 (patch)
tree6467b03133179a066dc77253163ae77798d242fa /tools
parent3dd622b2b485a221131e1f50dd5aef16b29ecdf9 (diff)
removed mingw from the list of platforms to use the
debug python lib, as it was causing link errors. if someone wishes to figure out why this is messing up, go ahead.
Diffstat (limited to 'tools')
-rw-r--r--tools/Blender.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/Blender.py b/tools/Blender.py
index 06ffba6912c..967bf1fcd3c 100644
--- a/tools/Blender.py
+++ b/tools/Blender.py
@@ -143,7 +143,7 @@ def setup_syslibs(lenv):
lenv['BF_PNG_LIB'],
lenv['BF_ZLIB_LIB']
]
- if lenv['BF_DEBUG']==1 and lenv['OURPLATFORM'] in ('win32-vc', 'win32-mingw'):
+ if lenv['BF_DEBUG']==1 and lenv['OURPLATFORM'] in ('win32-vc'):
syslibs.append(lenv['BF_PYTHON_LIB']+'_d')
else:
syslibs.append(lenv['BF_PYTHON_LIB'])