Unify slashes we get when parsing mkspec files on windows

This commit is contained in:
Tobias Hunger
2010-02-12 13:55:22 +01:00
parent 916df01013
commit 53cfd44537

View File

@@ -1149,6 +1149,8 @@ void QtVersion::updateToolChainAndMkspec() const
const QList<QByteArray> &temp = line.split('=');
if (temp.size() == 2) {
mkspecFullPath = temp.at(1).trimmed();
// We sometimes get a mix of different slash styles here...
mkspecFullPath = mkspecFullPath.replace('\\', '/');
}
break;
}