diff options
author | Bernhard M. Wiedemann <bwiedemann@suse.de> | 2017-05-17 15:54:19 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2017-05-17 23:17:07 +0200 |
commit | b4cfda8a4aa885b444ac2b71adbbe87906545026 (patch) | |
tree | c2e280e4a998573699a89ac1f90cf2df302f3f46 | |
parent | a6f657911e19c234739b3fe2e5519f041e69753b (diff) |
mkhelp.pl: do not add current time into curl binary
... as part of hugehelpgz rodata to make build reproducible.
See https://reproducible-builds.org/ for why this is good
Closes #1490
-rw-r--r-- | src/mkhelp.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mkhelp.pl b/src/mkhelp.pl index 4b540744c..93bbde621 100644 --- a/src/mkhelp.pl +++ b/src/mkhelp.pl @@ -129,7 +129,7 @@ if($c) my $content = join("", @out); my $gzippedContent; IO::Compress::Gzip::gzip( - \$content, \$gzippedContent, Level => 9, TextFlag => 1) or die "gzip failed:"; + \$content, \$gzippedContent, Level => 9, TextFlag => 1, Time=>0) or die "gzip failed:"; $gzip = length($content); $gzipped = length($gzippedContent); |