Skip to content
Snippets Groups Projects
Commit 769d7450 authored by Jake Petroules's avatar Jake Petroules Committed by Tobias Hunger
Browse files

Qbs: fix equivalent command line for "show command lines" option.


Change-Id: I91de51de3ce2fb0acc20b87992324e9ec8a26bc2
Reviewed-by: default avatarTobias Hunger <tobias.hunger@theqtcompany.com>
Reviewed-by: default avatarChristian Kandeler <christian.kandeler@theqtcompany.com>
parent 5c75924d
No related branches found
No related tags found
No related merge requests found
......@@ -301,7 +301,9 @@ QString QbsBuildConfiguration::equivalentCommandLine(const BuildStep *buildStep)
if (stepProxy.keepGoing())
Utils::QtcProcess::addArg(&commandLine, QLatin1String("--keep-going"));
if (stepProxy.showCommandLines())
Utils::QtcProcess::addArg(&commandLine, QLatin1String("--show-command-lines"));
Utils::QtcProcess::addArg(&commandLine, QStringList()
<< QLatin1String("--command-echo-mode")
<< QLatin1String("command-line"));
if (stepProxy.noInstall())
Utils::QtcProcess::addArg(&commandLine, QLatin1String("--no-install"));
if (stepProxy.cleanInstallRoot())
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment