summaryrefslogtreecommitdiffstats
path: root/qmake/generators/makefile.cpp
diff options
context:
space:
mode:
authorSlávek Banko <[email protected]>2020-03-20 02:45:00 +0100
committerSlávek Banko <[email protected]>2020-03-20 02:45:00 +0100
commit9d5d503f747ce54a6c048a415dae1b33d6b9b047 (patch)
tree6951ff957ca517a757d769296d79e6a3ee9bc1aa /qmake/generators/makefile.cpp
parent277646d8abf9312400a7d4d2bcd4e3790554892c (diff)
downloadtqt3-9d5d503f747ce54a6c048a415dae1b33d6b9b047.tar.gz
tqt3-9d5d503f747ce54a6c048a415dae1b33d6b9b047.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.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/qmake/generators/makefile.cpp b/qmake/generators/makefile.cpp
index c41f8e82f..307288e0d 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;