Make 'diff_populate_filespec()' use the new 'strbuf_readlink()'
[git/dscho.git] / perl / Makefile.PL
blob320253eb8e91eb1d914aa4e34f7d3af4649b9b39
1 use ExtUtils::MakeMaker;
3 sub MY::postamble {
4         return <<'MAKE_FRAG';
5 instlibdir:
6         @echo '$(INSTALLSITELIB)'
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 ($@ || $Error::VERSION < 0.15009) {
17         $pm{'private-Error.pm'} = '$(INST_LIBDIR)/Error.pm';
20 # redirect stdout, otherwise the message "Writing perl.mak for Git"
21 # disrupts the output for the target 'instlibdir'
22 open STDOUT, ">&STDERR";
24 WriteMakefile(
25         NAME            => 'Git',
26         VERSION_FROM    => 'Git.pm',
27         PM              => \%pm,
28         MAKEFILE        => 'perl.mak',
29         INSTALLSITEMAN3DIR => '$(SITEPREFIX)/share/man/man3'