Optionally return an empty list from makeLibName if we're using the monolithic wx lib

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxPython/Phoenix/trunk@70980 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2012-03-23 01:54:42 +00:00
parent 78f2d605b8
commit b0298e71e5
2 changed files with 6 additions and 3 deletions

View File

@@ -418,7 +418,9 @@ class Configuration(object):
return file_list
def makeLibName(self, name):
def makeLibName(self, name, checkMonolithic=False):
if checkMonolithic and self.MONOLITHIC:
return []
if os.name == 'posix' or self.COMPILER == 'mingw32':
libname = '%s_%s-%s' % (self.WXBASENAME, name, self.WXRELEASE)
elif name: