summaryrefslogtreecommitdiff
path: root/src/plugins/remotelinux/makeinstallstep.cpp
diff options
context:
space:
mode:
authorOrgad Shaneh <orgad.shaneh@audiocodes.com>2019-10-07 12:08:48 +0300
committerOrgad Shaneh <orgads@gmail.com>2019-10-08 08:33:25 +0000
commitd26140e7f166ae0ce6b0cf1848e28905ce53cfb5 (patch)
treeea1d61c95dbc2784023436fb1204eed938bda69d /src/plugins/remotelinux/makeinstallstep.cpp
parent92c067ba362ce612b35484a8b5a5153aaaf9db51 (diff)
downloadqt-creator-d26140e7f166ae0ce6b0cf1848e28905ce53cfb5.tar.gz
Qmake: Show real effective make call on Make step - take 2
Include custom Makefile. Change-Id: Ibc6a341590f8b1ff0da2fa87f5e5bcd75182b6a7 Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
Diffstat (limited to 'src/plugins/remotelinux/makeinstallstep.cpp')
-rw-r--r--src/plugins/remotelinux/makeinstallstep.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/remotelinux/makeinstallstep.cpp b/src/plugins/remotelinux/makeinstallstep.cpp
index ccc19418fe..7ddb4c9083 100644
--- a/src/plugins/remotelinux/makeinstallstep.cpp
+++ b/src/plugins/remotelinux/makeinstallstep.cpp
@@ -214,7 +214,7 @@ void MakeInstallStep::updateFullCommandLine()
// FIXME: Only executable?
static_cast<BaseStringAspect *>(aspect(FullCommandLineAspectId))->setValue(
QDir::toNativeSeparators(
- QtcProcess::quoteArg(effectiveMakeCommand().executable().toString()))
+ QtcProcess::quoteArg(makeExecutable().toString()))
+ ' ' + userArguments());
}