diff options
| author | Slávek Banko <slavek.banko@axis.cz> | 2020-03-20 02:45:00 +0100 |
|---|---|---|
| committer | Slávek Banko <slavek.banko@axis.cz> | 2020-03-21 17:50:47 +0100 |
| commit | c6295bafa7efd8e213641e4923627c0d6776830b (patch) | |
| tree | f5cc273941e0738da3d5e9f2a404f188d99728e7 /qmake/generators/makefile.cpp | |
| parent | 7ffca6e7f74b4f3ffc6871793071d61174185057 (diff) | |
| download | tqt-c6295bafa7efd8e213641e4923627c0d6776830b.tar.gz tqt-c6295bafa7efd8e213641e4923627c0d6776830b.zip | |
Remove dates from generated files.
This is related to the effort for reproducible builds.
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
(cherry picked from commit 9d5d503f747ce54a6c048a415dae1b33d6b9b047)
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 fae1dc6c1..a54e810cb 100644 --- a/qmake/generators/makefile.cpp +++ b/qmake/generators/makefile.cpp @@ -2142,10 +2142,9 @@ TQString MakefileGenerator::build_args() bool MakefileGenerator::writeHeader(TQTextStream &t) { - time_t foo = time(NULL); t << "#############################################################################" << endl; t << "# Makefile for building: " << var("TARGET") << endl; - t << "# Generated by qmake (" << qmake_version() << ") (TQt " << TQT_VERSION_STR << ") on: " << ctime(&foo); + t << "# Generated by qmake (" << qmake_version() << ") (TQt " << TQT_VERSION_STR << ")" << endl; t << "# Project: " << fileFixify(project->projectFile()) << endl; t << "# Template: " << var("TEMPLATE") << endl; t << "# Command: " << build_args() << endl; |
