diff options
author | aavit <qt-info@nokia.com> | 2010-11-09 11:20:26 (GMT) |
---|---|---|
committer | aavit <qt-info@nokia.com> | 2010-11-09 11:20:26 (GMT) |
commit | d25330abf4bfe73b7c2867923c461a762747c485 (patch) | |
tree | cb7f975a7c3e38057b5fac96f0bc23ec6897087e /tests/arthur | |
parent | e4aa7e8f270bb722c458a0e4a756a159ab695a9c (diff) | |
download | Qt-d25330abf4bfe73b7c2867923c461a762747c485.zip Qt-d25330abf4bfe73b7c2867923c461a762747c485.tar.gz Qt-d25330abf4bfe73b7c2867923c461a762747c485.tar.bz2 |
Really fix getting qmakespec on windows
Diffstat (limited to 'tests/arthur')
-rw-r--r-- | tests/arthur/common/baselineprotocol.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/arthur/common/baselineprotocol.cpp b/tests/arthur/common/baselineprotocol.cpp index 3fdef88..2a41104 100644 --- a/tests/arthur/common/baselineprotocol.cpp +++ b/tests/arthur/common/baselineprotocol.cpp @@ -58,8 +58,7 @@ PlatformInfo::PlatformInfo(bool useLocal) if (useLocal) { insert(PI_HostName, QHostInfo::localHostName()); insert(PI_QtVersion, QLS(qVersion())); - QString mkspec = QDir::fromNativeSeparators(QLS(QMAKESPEC)).remove(QRegExp(QLS("^.*/mkspecs/"))); - insert(PI_QMakeSpec, mkspec); + insert(PI_QMakeSpec, QString(QLS(QMAKESPEC)).remove(QRegExp(QLS("^.*mkspecs/")))); insert(PI_BuildKey, QLibraryInfo::buildKey()); #if defined(Q_OS_LINUX) insert(PI_OSName, QLS("Linux")); |