summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2007-04-21 07:55:00 (GMT)
committerJunio C Hamano <junkio@cox.net>2007-04-21 20:06:24 (GMT)
commit4a40cbd949d81863375a10e320f74c8fc595d05e (patch)
tree6cd7122fee1e6c45e80dbb00b0ce49921c7e687b
parent928c210a47fb7e38c56744bb14570638e6c23d7f (diff)
downloadgit-4a40cbd949d81863375a10e320f74c8fc595d05e.zip
git-4a40cbd949d81863375a10e320f74c8fc595d05e.tar.gz
git-4a40cbd949d81863375a10e320f74c8fc595d05e.tar.bz2
perl: install private Error.pm if the site version is older than our own
bdash (on IRC) had a problem with Git.pm (via git-svn) when his site installation of Error.pm was older than the version we package. Signed-off-by: Eric Wong <normalperson@yhbt.net> Signed-off-by: Junio C Hamano <junkio@cox.net>
-rw-r--r--perl/Makefile.PL2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl/Makefile.PL b/perl/Makefile.PL
index 9b117fd..4375161 100644
--- a/perl/Makefile.PL
+++ b/perl/Makefile.PL
@@ -13,7 +13,7 @@ my %pm = ('Git.pm' => '$(INST_LIBDIR)/Git.pm');
# We come with our own bundled Error.pm. It's not in the set of default
# Perl modules so install it if it's not available on the system yet.
eval { require Error };
-if ($@) {
+if ($@ || $Error::VERSION < 0.15009) {
$pm{'private-Error.pm'} = '$(INST_LIBDIR)/Error.pm';
}