Make the tlo reproducible by default.

Rationale: https://wiki.debian.org/ReproducibleBuilds/Howto#Introduction
This commit is contained in:
Ben Wiederhake 2015-10-17 01:33:09 +02:00
parent 7713b8ccb0
commit 66d26ea25d
1 changed files with 5 additions and 0 deletions

View File

@ -2999,7 +2999,12 @@ void write_types (int f) {
__f = f;
wint (TLS_SCHEMA_V2);
wint (0);
#ifdef TL_PARSER_NEED_TIME
wint (time (0));
#else
/* Make the tlo reproducible by default. Rationale: https://wiki.debian.org/ReproducibleBuilds/Howto#Introduction */
wint (0);
#endif
num = 0;
wint (total_types_num);
tree_act_tl_type (tl_type_tree, write_type);