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)