"Sean M. Burke" <[EMAIL PROTECTED]> wrote:
At 07:17 AM 2003-08-14 +0200, Andreas J Koenig wrote:
> Uhoh, what do I need to fix, and how do I fix it? Use simple words -- > my mind is still blown from the /Osbournes/ finale last night.
Add a C< INSTALLDIRS => "perl" > to your Makefile.PLs. That will tell MakeMaker to overwrite your modules from the last perl installation instead of putting them into INSTALLSITE*.
Will that do the right thing for people installing these modules for perls that didn't ship with these modules? Like installing Locale::Maketext for a perl 5.6, where Locale::Maketext wasn't core.
In this case you should write INSTALLDIRS => ($^] >= 5.006 ? "perl" : "site")
yes, corelist will help you. perldoc Module::CoreList
$ corelist Locale::Maketext Locale::Maketext was first released with perl 5.007003
=> INSTALLDIRS => ($^] >= 5.007003 ? "perl" : "site") -- Reini Urban http://xarch.tu-graz.ac.at/home/rurban/
