]> git.saurik.com Git - wxWidgets.git/commitdiff
Fix MSVCBuilder so it can pass an alternate make command to the Builder
authorRobin Dunn <robin@alldunn.com>
Fri, 22 Feb 2013 05:59:59 +0000 (05:59 +0000)
committerRobin Dunn <robin@alldunn.com>
Fri, 22 Feb 2013 05:59:59 +0000 (05:59 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@73554 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

build/tools/builder.py

index a61ca3d2b28fad226021feb770ba335a13bbc8cb..ce146abe0b6f4dd05c7cb688c5babae490fa359d 100755 (executable)
@@ -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)