diff --git a/BuildBotLib/basemodule.py b/BuildBotLib/basemodule.py index c946d65..5b88108 100644 --- a/BuildBotLib/basemodule.py +++ b/BuildBotLib/basemodule.py @@ -75,6 +75,10 @@ class BaseModule: def makeCommand(self, props): command = ['make'] + + if self.platform == BaseModule.P_Windows: + command = ['mingw32-make'] + cpus = multiprocessing.cpu_count() if cpus: