From 44114c59bac0208c1074c67880581c0956f1d78e Mon Sep 17 00:00:00 2001 From: Ben Pfaff Date: Fri, 8 Oct 2010 20:20:26 -0700 Subject: [PATCH] perl-module: Use ABSTRACT instead of ABSTRACT_FROM in Makefile.PL. This fixes the following warning from Perl: WARNING: Setting ABSTRACT via file 'lib/PSPP.pm' failed at /usr/share/perl/5.10/ExtUtils/MakeMaker.pm line 583 --- perl-module/Makefile.PL | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/perl-module/Makefile.PL b/perl-module/Makefile.PL index a3b7b465..a315abbe 100644 --- a/perl-module/Makefile.PL +++ b/perl-module/Makefile.PL @@ -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)", -- 2.30.2