summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel Molkentin <daniel.molkentin@nokia.com>2009-11-02 16:36:41 +0100
committerDaniel Molkentin <daniel.molkentin@nokia.com>2009-11-03 12:05:19 +0100
commit04d5735a608aeeab259463b1bc80842b5134ede6 (patch)
treedaf07b8e9bb1cee0c79f893b9d156a3a5ee2b22a
parent9fab0ede200960f0dbec1457757a6ba3214c3ce6 (diff)
Prepend qt_instdate when using configure.exe as well. Rebuilt configure.exe
Rebuilt using VS2008. Reviewed-By: Alessandro Portale
-rwxr-xr-xconfigure.exebin1169408 -> 1171968 bytes
-rw-r--r--tools/configure/configureapp.cpp2
2 files changed, 1 insertions, 1 deletions
diff --git a/configure.exe b/configure.exe
index f4338881f1..7c11feca25 100755
--- a/configure.exe
+++ b/configure.exe
Binary files differ
diff --git a/tools/configure/configureapp.cpp b/tools/configure/configureapp.cpp
index 28645a0295..3f891f6ca2 100644
--- a/tools/configure/configureapp.cpp
+++ b/tools/configure/configureapp.cpp
@@ -3032,7 +3032,7 @@ void Configure::generateConfigfiles()
<< "static const char qt_configure_licensed_products_str [512 + 12] = \"qt_lcnsprod=" << dictionary["EDITION"] << "\";" << endl
<< endl
<< "/* Build date */" << endl
- << "static const char qt_configure_installation [11 + 12] = \"" << QDate::currentDate().toString(Qt::ISODate) << "\";" << endl
+ << "static const char qt_configure_installation [11 + 12] = \"qt_instdate=" << QDate::currentDate().toString(Qt::ISODate) << "\";" << endl
<< endl;
if(!dictionary[ "QT_HOST_PREFIX" ].isNull())
tmpStream << "#if !defined(QT_BOOTSTRAPPED) && !defined(QT_BUILD_QMAKE)" << endl;