Return-Path: Delivered-To: apmail-perl-modperl-cvs-archive@www.apache.org Received: (qmail 43642 invoked from network); 18 Jun 2004 23:45:13 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur-2.apache.org with SMTP; 18 Jun 2004 23:45:13 -0000 Received: (qmail 37555 invoked by uid 500); 18 Jun 2004 23:45:34 -0000 Delivered-To: apmail-perl-modperl-cvs-archive@perl.apache.org Received: (qmail 37526 invoked by uid 500); 18 Jun 2004 23:45:34 -0000 Mailing-List: contact modperl-cvs-help@perl.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: list-post: Reply-To: dev@perl.apache.org Delivered-To: mailing list modperl-cvs@perl.apache.org Received: (qmail 37470 invoked by uid 500); 18 Jun 2004 23:45:33 -0000 Delivered-To: apmail-modperl-2.0-cvs@apache.org Date: 18 Jun 2004 23:45:07 -0000 Message-ID: <20040618234507.43585.qmail@minotaur.apache.org> From: randyk@apache.org To: modperl-2.0-cvs@apache.org Subject: cvs commit: modperl-2.0/lib/Apache ParseSource.pm X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N 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;