summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorMarius Storm-Olsen <marius.storm-olsen@nokia.com>2011-05-23 09:11:59 -0500
committerMarius Storm-Olsen <marius.storm-olsen@nokia.com>2011-05-23 09:11:59 -0500
commite79846298b7e80e713a75bd5f0f31b05270db5de (patch)
tree426b6367f1801f92cfeb6cfc3e72b37e22844a30 /tools
parentc44790b03b11c5d430572a25c76322cce03c74b7 (diff)
Use qglobal.h's VERSION number instead of hardcoded current version
Done-by: Friedemann Kleint
Diffstat (limited to 'tools')
-rw-r--r--tools/configure/configureapp.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/configure/configureapp.cpp b/tools/configure/configureapp.cpp
index 5819077658..c4dd47b609 100644
--- a/tools/configure/configureapp.cpp
+++ b/tools/configure/configureapp.cpp
@@ -3647,7 +3647,7 @@ void Configure::buildQmake()
<< "BUILD_PATH = " << QDir::convertSeparators(buildPath) << endl
<< "SOURCE_PATH = " << QDir::convertSeparators(sourcePath) << endl;
stream << "QMAKESPEC = " << dictionary["QMAKESPEC"] << endl
- << "QT_VERSION = " << QT_VERSION_STR << endl;
+ << "QT_VERSION = " << dictionary["VERSION"] << endl;
if (dictionary["EDITION"] == "OpenSource" ||
dictionary["QT_EDITION"].contains("OPENSOURCE"))