summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
Diffstat (limited to 'tools')
-rw-r--r--tools/configure/configureapp.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/configure/configureapp.cpp b/tools/configure/configureapp.cpp
index f326cbc08a..81be286a7c 100644
--- a/tools/configure/configureapp.cpp
+++ b/tools/configure/configureapp.cpp
@@ -3181,7 +3181,7 @@ void Configure::detectArch()
// compile
command = dictionary[ "MAKE" ];
- if (command.contains("nmake"))
+ if (command.contains("nmake") || command.contains("jom"))
command += " /NOLOGO";
command += " -s";
Environment::execute(command);
@@ -3286,7 +3286,7 @@ bool Configure::tryCompileProject(const QString &projectPath, const QString &ext
if (code == 0) {
// compile
command = dictionary[ "MAKE" ];
- if (command.contains("nmake"))
+ if (command.contains("nmake") || command.contains("jom"))
command += " /NOLOGO";
command += " -s 2>&1";
output = Environment::execute(command, &code);