Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2018-02-14 00:39:03 +0300
committerJunio C Hamano <gitster@pobox.com>2018-02-14 00:39:03 +0300
commited1b87ef910fe38dfb9cf044f5c946adfab0c5e3 (patch)
treeda7ff67fe9f1e6897d9ec701aaadc2eb99a57f61 /contrib
parent5be1f00a9a701532232f57958efab4be8c959a29 (diff)
parent7a7bfc7adceec0be66aec3a4999be2f9b33ccc24 (diff)
Merge branch 'ab/simplify-perl-makefile'
The build procedure for perl/ part has been greatly simplified by weaning ourselves off of MakeMaker. * ab/simplify-perl-makefile: perl: treat PERLLIB_EXTRA as an extra path again perl: avoid *.pmc and fix Error.pm further Makefile: replace perl/Makefile.PL with simple make rules
Diffstat (limited to 'contrib')
-rwxr-xr-xcontrib/examples/git-difftool.perl2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/examples/git-difftool.perl b/contrib/examples/git-difftool.perl
index df59bdfe97..fb0fd0b84b 100755
--- a/contrib/examples/git-difftool.perl
+++ b/contrib/examples/git-difftool.perl
@@ -13,7 +13,7 @@
use 5.008;
use strict;
use warnings;
-use Error qw(:try);
+use Git::Error qw(:try);
use File::Basename qw(dirname);
use File::Copy;
use File::Find;