From: Bernhard M. Wiedemann Date: Wed, 17 May 2017 13:54:19 +0000 (+0200) Subject: mkhelp.pl: do not add current time into curl binary X-Git-Tag: curl-7_54_1~105 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b4cfda8a4aa885b444ac2b71adbbe87906545026;p=curl 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 --- 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);