For 4.1.5: Ensure that file modified time is set correctly (backport #14444) #14453
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Commit e435bc6 introduced behavior in creating the source-dist archive that sets the file modification time to the same time as the most recent
gitcommit. This facilitates reproducible builds, but it also has an issue. The code setsTZ=, which means that on systems running in time zones which aren't UTC, the modification time may be in the future (or past). It depends on the system's behavior.Up until recently, this only resulted in GNU make printing warnings about modification times being in the future. However, with recent changes in how escripts are built, this results in an "infinite make loop" that is described in #14440 and #14443
This solution is to set the
TZ=UTCwhen calculating the time of the most recentgitcommit, as well as when usingtouch -tto set the file modification times.Fixes #14440, #14443
This is an automatic backport of pull request #14444 done by Mergify.