diff options
author | Slávek Banko <[email protected]> | 2020-03-20 02:45:00 +0100 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2021-02-02 00:30:11 +0100 |
commit | fc8564a5f04b90b998e792444f70550272e78ddb (patch) | |
tree | b48d20d9c4a98d3a7bd078fe43e671582a96fa00 /qmake/generators/makefile.cpp | |
parent | 961eb3f6e276b4a3609328a3076ef790026e9c03 (diff) | |
download | qt3-fc8564a5f04b90b998e792444f70550272e78ddb.tar.gz qt3-fc8564a5f04b90b998e792444f70550272e78ddb.zip |
Remove dates from generated files.
This is related to the effort for reproducible builds.
Signed-off-by: Slávek Banko <[email protected]>
Diffstat (limited to 'qmake/generators/makefile.cpp')
-rw-r--r-- | qmake/generators/makefile.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/qmake/generators/makefile.cpp b/qmake/generators/makefile.cpp index 9b46b89..e9b652a 100644 --- a/qmake/generators/makefile.cpp +++ b/qmake/generators/makefile.cpp @@ -2142,10 +2142,9 @@ QString MakefileGenerator::build_args() bool MakefileGenerator::writeHeader(QTextStream &t) { - time_t foo = time(NULL); t << "#############################################################################" << endl; t << "# Makefile for building: " << var("TARGET") << endl; - t << "# Generated by qmake (" << qmake_version() << ") (Qt " << QT_VERSION_STR << ") on: " << ctime(&foo); + t << "# Generated by qmake (" << qmake_version() << ") (Qt " << QT_VERSION_STR << ")" << endl; t << "# Project: " << fileFixify(project->projectFile()) << endl; t << "# Template: " << var("TEMPLATE") << endl; t << "# Command: " << build_args() << endl; |