Use more Utils::CommandLine in make steps

Change-Id: I72bbc65e0bec19a94418f1cb8bf9ba6fafbbe3bc
Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
This commit is contained in:
hjk
2019-05-29 17:23:42 +02:00
parent 1b4766e26c
commit c7badbd701
6 changed files with 35 additions and 39 deletions

View File

@@ -207,9 +207,10 @@ void MakeInstallStep::updateArgsFromAspect()
void MakeInstallStep::updateFullCommandLine()
{
// FIXME: Only executable?
static_cast<BaseStringAspect *>(aspect(FullCommandLineAspectId))->setValue(
QDir::toNativeSeparators(
QtcProcess::quoteArg(effectiveMakeCommand().toString()))
QtcProcess::quoteArg(effectiveMakeCommand().executable().toString()))
+ ' ' + userArguments());
}