From 823e18c7bc486a9f0dc3bc096b4991b162079044 Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Fri, 22 Feb 2013 05:59:59 +0000 Subject: [PATCH] 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 --- build/tools/builder.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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) -- 2.45.2