summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorTim Jenssen <tim.jenssen@nokia.com>2012-06-12 09:05:17 +0200
committerTim Jenssen <tim.jenssen@nokia.com>2012-06-12 09:54:09 +0200
commitcf6ac7ea81906a9640b5b9ef2281c3dc4d2b69fd (patch)
tree3fa677dd2b2adbf7d927212c2ccf8e706a71e6ac /tools
parent1133a88b01ea294f6e422e7c20c84bee4d028e46 (diff)
add the installer create datetime to --version
- binarycreate patches the installerbase to add the installer create datetime - output is now: Installer creation time 2012-06-08 - 17:39:43 IFW Version: "1.0.0", Installer base SHA1: "7031ecf", Build date: "Jun 8 2012". Change-Id: I8f82c6942eefaf49e5ad8605577a0034a7502a6c Reviewed-by: Niels Weber <niels.2.weber@nokia.com>
Diffstat (limited to 'tools')
-rw-r--r--tools/binarycreator/binarycreator.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/tools/binarycreator/binarycreator.cpp b/tools/binarycreator/binarycreator.cpp
index 9ec1d7106..ef3bd1fb0 100644
--- a/tools/binarycreator/binarycreator.cpp
+++ b/tools/binarycreator/binarycreator.cpp
@@ -31,6 +31,8 @@
**************************************************************************/
#include "common/repositorygen.h"
+#include <qtpatch.h>
+
#include <binaryformat.h>
#include <errors.h>
#include <fileutils.h>
@@ -194,6 +196,11 @@ Q_UNUSED(settings)
throw Error(QObject::tr("Could not copy %1 to %2: %3").arg(instExe.fileName(), tempFile,
instExe.errorString()));
}
+
+ QtPatch::patchBinaryFile(tempFile, QByteArray("MY_InstallerCreateDateTime_MY"),
+ QDateTime::currentDateTime().toString(QLatin1String("yyyy-MM-dd - HH:mm:ss")).toAscii());
+
+
input.installerExePath = tempFile;
#if defined(Q_OS_WIN)