Module Name: src
Committed By: martin
Date: Fri Jul 13 16:10:46 UTC 2018
Modified Files:
src/external/gpl3/binutils/dist/bfd [netbsd-8]: peXXigen.c
Log Message:
Pull up following revision(s) (requested by christos in ticket #917):
external/gpl3/binutils.old/dist/bfd/peXXigen.c: revision 1.6
(with /binutils.old/ -> /binutils/)
Fix reproducible builds for EFI boot blocks (from HEAD)
To generate a diff of this commit:
cvs rdiff -u -r1.1.1.5 -r1.1.1.5.6.1 \
src/external/gpl3/binutils/dist/bfd/peXXigen.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/external/gpl3/binutils/dist/bfd/peXXigen.c
diff -u src/external/gpl3/binutils/dist/bfd/peXXigen.c:1.1.1.5 src/external/gpl3/binutils/dist/bfd/peXXigen.c:1.1.1.5.6.1
--- src/external/gpl3/binutils/dist/bfd/peXXigen.c:1.1.1.5 Wed Oct 26 17:29:42 2016
+++ src/external/gpl3/binutils/dist/bfd/peXXigen.c Fri Jul 13 16:10:46 2018
@@ -879,6 +879,8 @@ _bfd_XXi_only_swap_filehdr_out (bfd * ab
/* Only use a real timestamp if the option was chosen. */
if ((pe_data (abfd)->insert_timestamp))
H_PUT_32 (abfd, time (0), filehdr_out->f_timdat);
+ else
+ H_PUT_32 (abfd, 0, filehdr_out->f_timdat);
PUT_FILEHDR_SYMPTR (abfd, filehdr_in->f_symptr,
filehdr_out->f_symptr);