mirror of
https://github.com/wxWidgets/Phoenix.git
synced 2025-12-16 01:30:07 +01:00
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:
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user