summaryrefslogtreecommitdiff
path: root/gitweb
diff options
context:
space:
mode:
authorLibravatar Junio C Hamano <gitster@pobox.com>2010-12-09 10:35:21 -0800
committerLibravatar Junio C Hamano <gitster@pobox.com>2010-12-09 10:35:21 -0800
commitfa8f1ca2a4c4ab37cc322341d543885057b7957c (patch)
treed7b7c0257afe1caa688bff567d50de3ae1eac34d /gitweb
parentcontrib/hooks/post-receive-email: fix return values from prep_for_email (diff)
parentperl: use "use warnings" instead of -w (diff)
downloadtgif-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-xgitweb/gitweb.perl1
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);