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>
This commit is contained in:

committed by
Junio C Hamano

parent
928c210a47
commit
4a40cbd949
@ -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
|
# 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.
|
# Perl modules so install it if it's not available on the system yet.
|
||||||
eval { require Error };
|
eval { require Error };
|
||||||
if ($@) {
|
if ($@ || $Error::VERSION < 0.15009) {
|
||||||
$pm{'private-Error.pm'} = '$(INST_LIBDIR)/Error.pm';
|
$pm{'private-Error.pm'} = '$(INST_LIBDIR)/Error.pm';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user