dougm       2002/06/01 19:34:13

  Modified:    .        Makefile.PL
  Log:
  workaround bug in 5.8.0-RC1 where Cwd::cwd creates $ENV{IFS}
  which makes apache configure fall apart on solaris
  
  Revision  Changes    Path
  1.203     +5 -0      modperl/Makefile.PL
  
  Index: Makefile.PL
  ===================================================================
  RCS file: /home/cvs/modperl/Makefile.PL,v
  retrieving revision 1.202
  retrieving revision 1.203
  diff -u -r1.202 -r1.203
  --- Makefile.PL       23 May 2002 03:38:39 -0000      1.202
  +++ Makefile.PL       2 Jun 2002 02:34:12 -0000       1.203
  @@ -94,7 +94,12 @@
       '../apache_x.x/src'  :
       $Apache::MyConfig::Setup{Apache_Src} ; 
   
  +#workaround bug in 5.8.0-RC1 where Cwd::cwd creates $ENV{IFS}
  +#which makes apache configure fall apart on solaris
  +my $ifs_exists = exists $ENV{IFS};
   my $PWD = cwd;
  +delete $ENV{IFS} unless $ifs_exists;
  +
   $ENV{APACHE_CWD} = $PWD;
   $ENV{PERL5LIB} = join ':', "$PWD/lib", $ENV{PERL5LIB};
   
  
  
  


Reply via email to