diff options
author | Junio C Hamano <gitster@pobox.com> | 2023-12-10 01:37:51 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2023-12-10 01:37:51 +0100 |
commit | 1ef1cce9c254d3787586ac87c1d1a2ca2c00bfd3 (patch) | |
tree | e1267cc212d491841a165f78512e52d58dfab223 /git-svn.perl | |
parent | Merge branch 'ak/rebase-autosquash' (diff) | |
parent | send-email: avoid duplicate specification warnings (diff) | |
download | git-1ef1cce9c254d3787586ac87c1d1a2ca2c00bfd3.tar.xz git-1ef1cce9c254d3787586ac87c1d1a2ca2c00bfd3.zip |
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 'git-svn.perl')
-rwxr-xr-x | git-svn.perl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/git-svn.perl b/git-svn.perl index 4e8878f035..b0d0a50984 100755 --- a/git-svn.perl +++ b/git-svn.perl @@ -1,7 +1,7 @@ #!/usr/bin/perl # Copyright (C) 2006, Eric Wong <normalperson@yhbt.net> # License: GPL v2 or later -use 5.008; +use 5.008001; use warnings $ENV{GIT_PERL_FATAL_WARNINGS} ? qw(FATAL all) : (); use strict; use vars qw/ $AUTHOR $VERSION |