summaryrefslogtreecommitdiff
path: root/contrib/fast-import
diff options
context:
space:
mode:
authorÆvar Arnfjörð Bjarmason <avarab@gmail.com>2010-09-24 20:00:53 (GMT)
committerJunio C Hamano <gitster@pobox.com>2010-09-27 19:37:56 (GMT)
commit3328acedc6104e3d46e8f0d26006d9650092ef3e (patch)
treea5f4382131db20ac87ae50223b0411077d39ff66 /contrib/fast-import
parentd48b28418355ef41a9501eb28a82ec0b69e62a17 (diff)
downloadgit-3328acedc6104e3d46e8f0d26006d9650092ef3e.zip
git-3328acedc6104e3d46e8f0d26006d9650092ef3e.tar.gz
git-3328acedc6104e3d46e8f0d26006d9650092ef3e.tar.bz2
perl: use "use warnings" instead of -w
Change the Perl scripts to turn on lexical warnings instead of setting the global $^W variable via the -w switch. The -w sets warnings for all code that interpreter runs, while "use warnings" is lexically scoped. The former is probably not what the authors wanted. As an auxiliary benefit it's now possible to build Git with: PERL_PATH='/usr/bin/env perl' Which would previously result in failures, since "#!/usr/bin/env perl -w" doesn't work as a shebang. Signed-off-by: Ævar Arnfjörð Bjarmason <avarab@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'contrib/fast-import')
-rwxr-xr-xcontrib/fast-import/import-directories.perl3
1 files changed, 2 insertions, 1 deletions
diff --git a/contrib/fast-import/import-directories.perl b/contrib/fast-import/import-directories.perl
index 3a5da4a..7f3afa5 100755
--- a/contrib/fast-import/import-directories.perl
+++ b/contrib/fast-import/import-directories.perl
@@ -1,4 +1,4 @@
-#!/usr/bin/perl -w
+#!/usr/bin/perl
#
# Copyright 2008-2009 Peter Krefting <peter@softwolves.pp.se>
#
@@ -140,6 +140,7 @@ by whitespace or other characters.
# Globals
use strict;
+use warnings;
use integer;
my $crlfmode = 0;
my @revs;