Fix Windows CE SDK detection.

Assignments to CE_SDK in the mkspecs are not quoted, and is therefore
stored as a string list.  Recombine the string list back into a single
string before use.
This commit is contained in:
Aaron McCarthy
2009-10-27 17:23:06 +10:00
parent efa44fa5c1
commit 1fb92cf87e

View File

@@ -1113,7 +1113,7 @@ void QtVersion::updateToolChain() const
reader->readProFile(mkspecPath + "/qmake.conf");
QString qmakeCXX = reader->value("QMAKE_CXX");
QString makefileGenerator = reader->value("MAKEFILE_GENERATOR");
QString ce_sdk = reader->value("CE_SDK");
QString ce_sdk = reader->values("CE_SDK").join(QLatin1String(" "));
QString ce_arch = reader->value("CE_ARCH");
QString qt_arch = reader->value("QT_ARCH");
if (!ce_sdk.isEmpty() && !ce_arch.isEmpty()) {