Skip to content
Snippets Groups Projects
Commit 57b49550 authored by lowinu's avatar lowinu
Browse files

Fixes: correctly read mkspec

RevBy:    dt
parent 64a4f937
No related branches found
No related tags found
No related merge requests found
......@@ -1075,7 +1075,7 @@ void QtVersion::updateMkSpec() const
if (line.startsWith("QMAKESPEC_ORIGINAL")) {
const QList<QByteArray> &temp = line.split('=');
if (temp.size() == 2) {
mkspec = temp.at(1);
mkspec = temp.at(1).trimmed();
}
break;
}
......
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