]> git.ipfire.org Git - thirdparty/git.git/blobdiff - perl/Makefile.PL
Make perl/ build procedure ActiveState friendly.
[thirdparty/git.git] / perl / Makefile.PL
index 97ee9af9c9834d759c33b17bca7b66eaef200e4f..de73235e4c3142381c4ea01597e18b14cd65bc02 100644 (file)
@@ -3,12 +3,7 @@ use ExtUtils::MakeMaker;
 sub MY::postamble {
        return <<'MAKE_FRAG';
 instlibdir:
-       @echo '$(INSTALLSITEARCH)'
-
-check:
-       perl -MDevel::PPPort -le 'Devel::PPPort::WriteFile(".ppport.h")' && \
-       perl .ppport.h --compat-version=5.6.0 Git.xs && \
-       rm .ppport.h
+       @echo '$(INSTALLSITELIB)'
 
 MAKE_FRAG
 }
@@ -22,10 +17,12 @@ if ($@) {
        $pm{'private-Error.pm'} = '$(INST_LIBDIR)/Error.pm';
 }
 
+my %extra;
+$extra{DESTDIR} = $ENV{DESTDIR} if $ENV{DESTDIR};
+
 WriteMakefile(
        NAME            => 'Git',
        VERSION_FROM    => 'Git.pm',
        PM              => \%pm,
-       MYEXTLIB        => '../libgit.a',
-       INC             => '-I. -I..',
+       %extra
 );