aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/corelib/buildgraph/processcommandexecutor.h
diff options
context:
space:
mode:
authorJake Petroules <jake.petroules@petroules.com>2015-07-11 22:42:55 -0700
committerJake Petroules <jake.petroules@petroules.com>2015-07-13 11:52:31 +0000
commitbe6d0e2486487e84839871c324d0cccc5067284d (patch)
treece87bb4ca98fa52174fe4659bd3b14ac43726049 /src/lib/corelib/buildgraph/processcommandexecutor.h
parentf05c8c1b9d6205086bf6c0ce6fe226f627d9c86e (diff)
Print the command that was actually executed in command echo mode.
Previously, it would display the command that was entered ("cmd") vs the command that was actually used ("C:\Windows\System32\cmd.exe"). Change-Id: Ia3487f2a0fee4c439d82598f3e2e81650efafa80 Reviewed-by: Christian Kandeler <christian.kandeler@theqtcompany.com>
Diffstat (limited to 'src/lib/corelib/buildgraph/processcommandexecutor.h')
-rw-r--r--src/lib/corelib/buildgraph/processcommandexecutor.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/lib/corelib/buildgraph/processcommandexecutor.h b/src/lib/corelib/buildgraph/processcommandexecutor.h
index bae8a7e50..d0b4bb82b 100644
--- a/src/lib/corelib/buildgraph/processcommandexecutor.h
+++ b/src/lib/corelib/buildgraph/processcommandexecutor.h
@@ -61,6 +61,7 @@ private slots:
void onProcessFinished(int exitCode);
private:
+ void doSetup();
void doReportCommandDescription();
void doStart();
void cancel();
@@ -74,6 +75,7 @@ private:
private:
QString m_program;
QStringList m_arguments;
+ QString m_shellInvocation;
QProcess m_process;
QProcessEnvironment m_buildEnvironment;