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
This commit is contained in:
Bernhard M. Wiedemann 2017-05-17 15:54:19 +02:00 committed by Daniel Stenberg
parent a6f657911e
commit b4cfda8a4a

View File

@ -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);