From a8689ba10badef3313898ffb84db99f9fb26bfbc Mon Sep 17 00:00:00 2001 From: "a.yankovich" Date: Tue, 4 Feb 2020 16:34:32 +0300 Subject: [PATCH] fix --- BuildBotLib/basemodule.py | 4 ++++ 1 file changed, 4 insertions(+) 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: