X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=perl-module%2FMakefile.PL;h=7efaa57beabdf616bcea30f49f8ad1b182fe837e;hb=8180c5dd1591446174c0753ee960921786113403;hp=a3b7b465adf80edf6708b40e95a4900e2784059f;hpb=6cb6efdc655c8932590696e611f1cca96e1ed807;p=pspp diff --git a/perl-module/Makefile.PL b/perl-module/Makefile.PL index a3b7b465ad..7efaa57bea 100644 --- a/perl-module/Makefile.PL +++ b/perl-module/Makefile.PL @@ -4,7 +4,7 @@ use ExtUtils::MakeMaker; # the contents of the Makefile that is written. -do 'pspp-module-config' || do { +do './pspp-module-config' || do { my $build = prompt ("Enter the location of the build directory of the configured pspp source:", "" ); my $src = $top_srcdir; @@ -19,7 +19,7 @@ WriteMakefile( PREREQ_PM => {POSIX=>0}, PM => {"lib/PSPP.pm", "\$(INST_LIBDIR)/PSPP.pm"}, ($] >= 5.005 ? ## Add these new keywords supported since 5.005 - (ABSTRACT_FROM => 'lib/PSPP.pm', # retrieve abstract from module + (ABSTRACT => 'Perl extension to PSPP', AUTHOR => 'John Darrington ') : ()), INC => "-I $Locations{SourceDir} -I $Locations{SourceDir}/src -I $Locations{SourceDir}/gl -I $Locations{BuildDir}/gl -I $Locations{BuildDir}", MYEXTLIB => "$Locations{BuildDir}/src/.libs/libpspp-core.\$(SO)",