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.
This commit is contained in:
Joseph Eagar
2008-02-26 00:04:54 +00:00
parent 3dd622b2b4
commit 31b04490d1

View File

@@ -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'])