Fixes: correctly read mkspec

RevBy:    dt
This commit is contained in:
lowinu
2008-12-18 13:23:05 +01:00
parent a51b70b51c
commit 355160e56f

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