summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBernhard M. Wiedemann <bwiedemann@suse.de>2017-05-17 15:54:19 +0200
committerDaniel Stenberg <daniel@haxx.se>2017-05-17 23:17:07 +0200
commitb4cfda8a4aa885b444ac2b71adbbe87906545026 (patch)
treec2e280e4a998573699a89ac1f90cf2df302f3f46
parenta6f657911e19c234739b3fe2e5519f041e69753b (diff)
downloadcurl-b4cfda8a4aa885b444ac2b71adbbe87906545026.tar.gz
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.pl2
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);