stas        02/03/22 11:58:13

  Modified:    .        Changes Makefile.PL
  Log:
  the first flag argument to perl cannot start with space, since perl tries
  to open the " -spi.bak" as a file. fix that in the win32 case.
  
  Revision  Changes    Path
  1.626     +4 -0      modperl/Changes
  
  Index: Changes
  ===================================================================
  RCS file: /home/cvs/modperl/Changes,v
  retrieving revision 1.625
  retrieving revision 1.626
  diff -u -r1.625 -r1.626
  --- Changes   19 Mar 2002 02:18:02 -0000      1.625
  +++ Changes   22 Mar 2002 19:58:13 -0000      1.626
  @@ -10,6 +10,10 @@
   
   =item 1.26_01-dev
   
  +the first flag argument to perl cannot start with space, since perl tries 
  +to open the " -spi.bak" as a file. fix that in the win32 case.
  +[Stas Bekman <[EMAIL PROTECTED]>]
  +
   starting from perl 5.7.3 for tied filehandles, tiedscalar magic is applied 
   to the IO slot of the GP rather than the GV itself. adjust the TIEHANDLE 
   macro to work properly under 5.7.3+. [Charles Jardine <[EMAIL PROTECTED]>, 
  
  
  
  1.197     +1 -1      modperl/Makefile.PL
  
  Index: Makefile.PL
  ===================================================================
  RCS file: /home/cvs/modperl/Makefile.PL,v
  retrieving revision 1.196
  retrieving revision 1.197
  diff -u -r1.196 -r1.197
  --- Makefile.PL       9 Sep 2001 21:56:46 -0000       1.196
  +++ Makefile.PL       22 Mar 2002 19:58:13 -0000      1.197
  @@ -1101,7 +1101,7 @@
       cp "lib/mod_perl_hooks.pm.PL", "lib/mod_perl_hooks.pm"; 
   
       if ($Is_Win32) {
  -      my @args = ($^X, ' -spi.bak ', ' -e ', "\"s/sub mod_perl::hooks.*/sub 
mod_perl::hooks { qw($hooks) }/\"", 'lib/mod_perl_hooks.pm');
  +      my @args = ($^X, '-spi.bak ', ' -e ', "\"s/sub mod_perl::hooks.*/sub 
mod_perl::hooks { qw($hooks) }/\"", 'lib/mod_perl_hooks.pm');
         system(@args) == 0 or die "@args failed\n";
       }
       iedit "lib/mod_perl_hooks.pm", 
  
  
  


Reply via email to