diff options
author | Junio C Hamano <gitster@pobox.com> | 2010-12-09 10:35:21 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2010-12-09 10:35:21 -0800 |
commit | fa8f1ca2a4c4ab37cc322341d543885057b7957c (patch) | |
tree | d7b7c0257afe1caa688bff567d50de3ae1eac34d /gitweb | |
parent | contrib/hooks/post-receive-email: fix return values from prep_for_email (diff) | |
parent | perl: use "use warnings" instead of -w (diff) | |
download | tgif-fa8f1ca2a4c4ab37cc322341d543885057b7957c.tar.xz |
Merge branch 'ab/require-perl-5.8' into maint
* ab/require-perl-5.8:
perl: use "use warnings" instead of -w
perl: bump the required Perl version to 5.8 from 5.6.[21]
Diffstat (limited to 'gitweb')
-rwxr-xr-x | gitweb/gitweb.perl | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gitweb/gitweb.perl b/gitweb/gitweb.perl index a85e2f6319..e645d4a821 100755 --- a/gitweb/gitweb.perl +++ b/gitweb/gitweb.perl @@ -7,6 +7,7 @@ # # This program is licensed under the GPLv2 +use 5.008; use strict; use warnings; use CGI qw(:standard :escapeHTML -nosticky); |