aboutsummaryrefslogtreecommitdiff
path: root/bfd/peXXigen.c
diff options
context:
space:
mode:
Diffstat (limited to 'bfd/peXXigen.c')
-rw-r--r--bfd/peXXigen.c15
1 files changed, 1 insertions, 14 deletions
diff --git a/bfd/peXXigen.c b/bfd/peXXigen.c
index cdd89f8..da53f34 100644
--- a/bfd/peXXigen.c
+++ b/bfd/peXXigen.c
@@ -838,20 +838,7 @@ _bfd_XXi_only_swap_filehdr_out (bfd * abfd, void * in, void * out)
/* Use a real timestamp by default, unless the no-insert-timestamp
option was chosen. */
if ((pe_data (abfd)->timestamp) == -1)
- {
- time_t now;
- char *source_date_epoch;
-
- /* If the SOURCE_DATE_EPOCH environment variable is
- defined then use that as the time, otherwise use
- the current time. */
- source_date_epoch = getenv ("SOURCE_DATE_EPOCH");
- if (source_date_epoch)
- now = (time_t) strtoll (source_date_epoch, NULL, 10);
- else
- now = time (NULL);
- H_PUT_32 (abfd, now, filehdr_out->f_timdat);
- }
+ H_PUT_32 (abfd, time (0), filehdr_out->f_timdat);
else
H_PUT_32 (abfd, pe_data (abfd)->timestamp, filehdr_out->f_timdat);