]> git.ipfire.org Git - thirdparty/git.git/commit
perl: use "use warnings" instead of -w
authorÆvar Arnfjörð Bjarmason <avarab@gmail.com>
Fri, 24 Sep 2010 20:00:53 +0000 (20:00 +0000)
committerJunio C Hamano <gitster@pobox.com>
Mon, 27 Sep 2010 19:37:56 +0000 (12:37 -0700)
commit3328acedc6104e3d46e8f0d26006d9650092ef3e
treea5f4382131db20ac87ae50223b0411077d39ff66
parentd48b28418355ef41a9501eb28a82ec0b69e62a17
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>
contrib/examples/git-svnimport.perl
contrib/fast-import/import-directories.perl
git-add--interactive.perl
git-archimport.perl
git-cvsexportcommit.perl
git-cvsimport.perl
git-send-email.perl