Fix MSVCBuilder so it can pass an alternate make command to the Builder

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@73554 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn 2013-02-22 05:59:59 +00:00
parent 317bc825f4
commit 823e18c7bc

View File

@ -188,8 +188,8 @@ class AutoconfBuilder(GNUMakeBuilder):
class MSVCBuilder(Builder):
def __init__(self):
Builder.__init__(self, commandName="nmake.exe", formatName="msvc")
def __init__(self, commandName="nmake.exe"):
Builder.__init__(self, commandName=commandName, formatName="msvc")
def isAvailable(self):
PATH = os.environ['PATH'].split(os.path.pathsep)