Fixes: correctly read mkspec

RevBy:    dt
This commit is contained in:
lowinu
2008-12-18 13:23:05 +01:00
parent 64a4f93775
commit 57b49550c4

View File

@@ -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;
}