stas        2003/01/22 20:25:05

  Modified:    .        Makefile.PL Changes
  Log:
  use $Config{'installstyle'} instead of hardcoded 'lib', to handle
  Makefile.PL's PREFIX option correctly
  Submitted by: Philippe M. Chiasson <[EMAIL PROTECTED]>
  Reviewed by:  stas
  
  Revision  Changes    Path
  1.205     +1 -1      modperl/Makefile.PL
  
  Index: Makefile.PL
  ===================================================================
  RCS file: /home/cvs/modperl/Makefile.PL,v
  retrieving revision 1.204
  retrieving revision 1.205
  diff -u -r1.204 -r1.205
  --- Makefile.PL       19 Jun 2002 16:31:52 -0000      1.204
  +++ Makefile.PL       23 Jan 2003 04:25:04 -0000      1.205
  @@ -347,7 +347,7 @@
       if ($k eq 'PREFIX') {
           require File::Spec;
           $MOD_PERL_PREFIX =
  -          File::Spec->catfile($v, 'lib', 'site_perl',
  +          File::Spec->catfile($v, $Config{'installstyle'}, 'site_perl',
                                 $Config{'version'}, $Config{'archname'});
       }
                
  
  
  
  1.659     +4 -0      modperl/Changes
  
  Index: Changes
  ===================================================================
  RCS file: /home/cvs/modperl/Changes,v
  retrieving revision 1.658
  retrieving revision 1.659
  diff -u -r1.658 -r1.659
  --- Changes   25 Dec 2002 01:46:09 -0000      1.658
  +++ Changes   23 Jan 2003 04:25:04 -0000      1.659
  @@ -10,6 +10,10 @@
   
   =item 1.27_01-dev
   
  +use $Config{'installstyle'} instead of hardcoded 'lib', to handle
  +Makefile.PL's PREFIX option correctly [Philippe M. Chiasson
  +<[EMAIL PROTECTED]>]
  +
   prevent segfaults in mod_perl_mark_where() when a sub can't get
   resolved [Gerald Richter <[EMAIL PROTECTED]>]
   
  
  
  


Reply via email to