Fix probing for already installed Error.pm
[git/dkf.git] / perl / Makefile.PL
blob25ae54a5151143ceb8ed1710b034b8d072d8e91f
1 use ExtUtils::MakeMaker;
3 sub MY::postamble {
4         return <<'MAKE_FRAG';
5 instlibdir:
6         @echo '$(INSTALLSITEARCH)'
8 MAKE_FRAG
11 my %pm = ('Git.pm' => '$(INST_LIBDIR)/Git.pm');
13 # We come with our own bundled Error.pm. It's not in the set of default
14 # Perl modules so install it if it's not available on the system yet.
15 eval { require Error };
16 if ($@) {
17         $pm{'private-Error.pm'} = '$(INST_LIBDIR)/Error.pm';
20 WriteMakefile(
21         NAME            => 'Git',
22         VERSION_FROM    => 'Git.pm',
23         PM              => \%pm,
24         MYEXTLIB        => '../libgit.a',
25         INC             => '-I. -I..',
29 use Devel::PPPort;
31 -s 'ppport.h' or Devel::PPPort::WriteFile();