Skip to content
Snippets Groups Projects
Commit 7dc399d6 authored by dt's avatar dt
Browse files

Fixed the check for whether there already is a -spec parameter

parent 98ded2e8
No related branches found
No related tags found
No related merge requests found
...@@ -64,7 +64,7 @@ QStringList QMakeStep::arguments(const QString &buildConfiguration) ...@@ -64,7 +64,7 @@ QStringList QMakeStep::arguments(const QString &buildConfiguration)
arguments << project()->file()->fileName(); arguments << project()->file()->fileName();
arguments << "-r"; arguments << "-r";
if (!arguments.contains("-spec")) if (!additonalArguments.contains("-spec"))
arguments << "-spec" << "default"; arguments << "-spec" << "default";
#ifdef Q_OS_WIN #ifdef Q_OS_WIN
......
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