Fixed printing of the current Qt version number

The final dot was confusing qmake, apparently considered part of the
variable name.
This commit is contained in:
Thorbjørn Lindeijer
2009-11-14 13:58:09 +01:00
parent fc52fd8908
commit 881f62e965

View File

@@ -1,6 +1,6 @@
#version check qt
contains(QT_VERSION, ^4\.[0-5]\..*) {
message("Cannot build Qt Creator with Qt version $$QT_VERSION.")
message("Cannot build Qt Creator with Qt version $${QT_VERSION}.")
error("Use at least Qt 4.6.")
}