diff options
author | Juro Bystricky <juro.bystricky@intel.com> | 2017-10-27 08:28:25 -0700 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2017-10-30 19:27:49 +0100 |
commit | 6089aa53e44ff5171a5aec457b6746f653440ced (patch) | |
tree | 34f5cf160234fdba270852ba33466bc9d2790f9a /src | |
parent | 89116e3422ea310a27d6a1f8a94c17c222bfae39 (diff) | |
download | curl-6089aa53e44ff5171a5aec457b6746f653440ced.tar.gz |
mkhelp.pl: support reproducible build
Do not generate line with the current date, such as:
* Generation time: Tue Oct-24 18:01:41 2017
This will improve reproducibility. The generated string is only
part of a comment, so there should be no adverse consequences.
Signed-off-by: Juro Bystricky <juro.bystricky@intel.com>
closes #2026
Diffstat (limited to 'src')
-rwxr-xr-x | src/mkhelp.pl | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/mkhelp.pl b/src/mkhelp.pl index 270daa20a..757f024ce 100755 --- a/src/mkhelp.pl +++ b/src/mkhelp.pl @@ -102,11 +102,9 @@ while(<READ>) { } close(READ); -$now = localtime; print <<HEAD /* * NEVER EVER edit this manually, fix the mkhelp.pl script instead! - * Generation time: $now */ #ifdef USE_MANUAL #include "tool_hugehelp.h" |