aboutsummaryrefslogtreecommitdiff
path: root/git-cvsimport.perl
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2010-10-26 21:57:31 -0700
committerJunio C Hamano <gitster@pobox.com>2010-10-26 21:57:31 -0700
commit9b73ce74e6abfb45626bce7a21465e6db6302be0 (patch)
treeb42fdc0582602ccc0cbd61929140c3695520eb2c /git-cvsimport.perl
parent329351feeb0c08c835ac4ff05f127fbfe42a78cf (diff)
parent3328acedc6104e3d46e8f0d26006d9650092ef3e (diff)
downloadgit-9b73ce74e6abfb45626bce7a21465e6db6302be0.tar.gz
git-9b73ce74e6abfb45626bce7a21465e6db6302be0.tar.xz
Merge branch 'ab/require-perl-5.8'
* 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 'git-cvsimport.perl')
-rwxr-xr-xgit-cvsimport.perl3
1 files changed, 2 insertions, 1 deletions
diff --git a/git-cvsimport.perl b/git-cvsimport.perl
index 7ab7bbc9e..d27abfe7f 100755
--- a/git-cvsimport.perl
+++ b/git-cvsimport.perl
@@ -1,4 +1,4 @@
-#!/usr/bin/perl -w
+#!/usr/bin/perl
# This tool is copyright (c) 2005, Matthias Urlichs.
# It is released under the Gnu Public License, version 2.
@@ -13,6 +13,7 @@
# The head revision is on branch "origin" by default.
# You can change that with the '-o' option.
+use 5.008;
use strict;
use warnings;
use Getopt::Long;