From: Robin Dunn Date: Fri, 22 Feb 2013 05:59:59 +0000 (+0000) Subject: Fix MSVCBuilder so it can pass an alternate make command to the Builder X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/823e18c7bc486a9f0dc3bc096b4991b162079044 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 --- diff --git a/build/tools/builder.py b/build/tools/builder.py index a61ca3d2b2..ce146abe0b 100755 --- a/build/tools/builder.py +++ b/build/tools/builder.py @@ -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)