diff options
| author | Junio C Hamano <gitster@pobox.com> | 2023-12-09 16:37:51 -0800 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2023-12-09 16:37:51 -0800 |
| commit | 1ef1cce9c254d3787586ac87c1d1a2ca2c00bfd3 (patch) | |
| tree | e1267cc212d491841a165f78512e52d58dfab223 /gitweb | |
| parent | f8f87e082798939362410aed587dd22e280913c3 (diff) | |
| parent | 6ff658cc78f36baa74c0f25314b0043a8f4b4fc6 (diff) | |
| download | git-1ef1cce9c254d3787586ac87c1d1a2ca2c00bfd3.tar.xz | |
Merge branch 'tz/send-email-negatable-options'
Newer versions of Getopt::Long started giving warnings against our
(ab)use of it in "git send-email". Bump the minimum version
requirement for Perl to 5.8.1 (from September 2002) to allow
simplifying our implementation.
* tz/send-email-negatable-options:
send-email: avoid duplicate specification warnings
perl: bump the required Perl version to 5.8.1 from 5.8.0
Diffstat (limited to 'gitweb')
| -rw-r--r-- | gitweb/INSTALL | 2 | ||||
| -rwxr-xr-x | gitweb/gitweb.perl | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/gitweb/INSTALL b/gitweb/INSTALL index a58e6b3c44..dadc6efa81 100644 --- a/gitweb/INSTALL +++ b/gitweb/INSTALL @@ -29,7 +29,7 @@ Requirements ------------ - Core git tools - - Perl 5.8 + - Perl 5.8.1 - Perl modules: CGI, Encode, Fcntl, File::Find, File::Basename. - web server diff --git a/gitweb/gitweb.perl b/gitweb/gitweb.perl index e66eb3d9ba..55e7c6567e 100755 --- a/gitweb/gitweb.perl +++ b/gitweb/gitweb.perl @@ -7,7 +7,7 @@ # # This program is licensed under the GPLv2 -use 5.008; +use 5.008001; use strict; use warnings; # handle ACL in file access tests |
