randyk      2004/06/18 16:45:07

  Modified:    lib/Apache ParseSource.pm
  Log:
  Reviewed by:  stas
  follow => 1 for symlinks of File::Find doesn't work on Win32.
  
  Revision  Changes    Path
  1.56      +1 -1      modperl-2.0/lib/Apache/ParseSource.pm
  
  Index: ParseSource.pm
  ===================================================================
  RCS file: /home/cvs/modperl-2.0/lib/Apache/ParseSource.pm,v
  retrieving revision 1.55
  retrieving revision 1.56
  diff -u -r1.55 -r1.56
  --- ParseSource.pm    17 May 2004 23:01:22 -0000      1.55
  +++ ParseSource.pm    18 Jun 2004 23:45:07 -0000      1.56
  @@ -200,7 +200,7 @@
                                      my $dir = $File::Find::dir;
                                      push @includes, "$dir/$_";
                                  },
  -                               follow => 1,
  +                               (Apache::Build::WIN32 ? '' : follow => 1),
                                 }, $dir);
       }
       return @includes;
  
  
  

Reply via email to