From: John Darrington Date: Wed, 9 Jun 2010 18:22:43 +0000 (+0200) Subject: perl-module/Makefile.PL: Change DLEXT to SO X-Git-Tag: sav-api~189 X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6cb6efdc655c8932590696e611f1cca96e1ed807;p=pspp perl-module/Makefile.PL: Change DLEXT to SO Apparently the former is for dynamically loaded modules, whereas the latter is for shared libraries. So SO is appropriate here. Thanks to Jeremy Lavergne for reporting this. --- diff --git a/perl-module/Makefile.PL b/perl-module/Makefile.PL index 56b8a930ce..a3b7b465ad 100644 --- a/perl-module/Makefile.PL +++ b/perl-module/Makefile.PL @@ -22,7 +22,7 @@ WriteMakefile( (ABSTRACT_FROM => 'lib/PSPP.pm', # retrieve abstract from module 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.\$(DLEXT)", + MYEXTLIB => "$Locations{BuildDir}/src/.libs/libpspp-core.\$(SO)", MAN3PODS => {"lib/PSPP.pm", "\$(INST_MAN3DIR)/PSPP.3pm", "Examples.pod", "\$(INST_MAN3DIR)/PSPP::Examples.3pm"} );