aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules
diff options
context:
space:
mode:
Diffstat (limited to 'src/modules')
-rw-r--r--src/modules/system/libkvisystem.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/system/libkvisystem.cpp b/src/modules/system/libkvisystem.cpp
index d3a14e947..364079740 100644
--- a/src/modules/system/libkvisystem.cpp
+++ b/src/modules/system/libkvisystem.cpp
@@ -716,7 +716,7 @@ static bool system_kvs_cmd_runcmd(KviKvsModuleCommandCall *c)
QProcess oProc;
QStringList args;
QStringList szTerminals;
-#ifdef COMPILE_ON_WINDOWS // Only »cmd.exe /k« in the list.
+#if defined(COMPILE_ON_WINDOWS) || defined(COMPILE_ON_MINGW) // Only »cmd.exe /k« in the list.
szTerminals.append("cmd.exe");
args << "/k" << szCommand;
#else