This is an automated email from the ASF dual-hosted git repository. markt pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/tomcat.git
The following commit(s) were added to refs/heads/master by this push: new c3215cf Reproducible builds: Windows installer c3215cf is described below commit c3215cf9e3652a7c37b45580ccbb77d5233f47a5 Author: Mark Thomas <ma...@apache.org> AuthorDate: Fri Mar 19 15:22:41 2021 +0000 Reproducible builds: Windows installer --- build.xml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/build.xml b/build.xml index 3aabf2e..60fd8cc 100644 --- a/build.xml +++ b/build.xml @@ -2610,6 +2610,10 @@ skip.installer property in build.properties" /> encoding="ISO-8859-1" fixlast="false" > <patternset refid="text.files" /> </fixcrlf> + <!-- Reproducible builds: consistent timestamps for installer files --> + <touch datetime="${tstamp.file}" pattern="MM/dd/yyyy hh:mm:ss aa"> + <fileset dir="${tomcat.dist}"/> + </touch> </target> <target name="-installer-create-tempinstaller" @@ -2637,7 +2641,10 @@ skip.installer property in build.properties" /> <exec dir="${tomcat.dist}" executable="wine" osfamily="unix"> <arg value="${tomcat.dist}/tempinstaller.exe" /> </exec> - + <!-- Reproducible builds: consistent timestamps for installer files --> + <touch datetime="${tstamp.file}" pattern="MM/dd/yyyy hh:mm:ss aa"> + <fileset dir="${tomcat.dist}"/> + </touch> </target> <target name="-installer-sign-uninstaller" --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org