diff options
author | Daniel Molkentin <daniel.molkentin@nokia.com> | 2009-11-02 15:36:41 (GMT) |
---|---|---|
committer | Daniel Molkentin <daniel.molkentin@nokia.com> | 2009-11-03 11:05:19 (GMT) |
commit | 04d5735a608aeeab259463b1bc80842b5134ede6 (patch) | |
tree | daf07b8e9bb1cee0c79f893b9d156a3a5ee2b22a /tools/configure | |
parent | 9fab0ede200960f0dbec1457757a6ba3214c3ce6 (diff) | |
download | Qt-04d5735a608aeeab259463b1bc80842b5134ede6.zip Qt-04d5735a608aeeab259463b1bc80842b5134ede6.tar.gz Qt-04d5735a608aeeab259463b1bc80842b5134ede6.tar.bz2 |
Prepend qt_instdate when using configure.exe as well. Rebuilt configure.exe
Rebuilt using VS2008.
Reviewed-By: Alessandro Portale
Diffstat (limited to 'tools/configure')
-rw-r--r-- | tools/configure/configureapp.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/configure/configureapp.cpp b/tools/configure/configureapp.cpp index 28645a0..3f891f6 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; |