You are viewing a plain text version of this content. The canonical link for it is here.
Posted to modperl-cvs@perl.apache.org by ge...@apache.org on 2005/03/22 04:43:16 UTC

svn commit: r158531 - perl/modperl/trunk/lib/ModPerl/Manifest.pm

Author: geoff
Date: Mon Mar 21 19:43:15 2005
New Revision: 158531

URL: http://svn.apache.org/viewcvs?view=rev&rev=158531
Log:
work around svn:this_dir foo

Modified:
    perl/modperl/trunk/lib/ModPerl/Manifest.pm

Modified: perl/modperl/trunk/lib/ModPerl/Manifest.pm
URL: http://svn.apache.org/viewcvs/perl/modperl/trunk/lib/ModPerl/Manifest.pm?view=diff&r1=158530&r2=158531
==============================================================================
--- perl/modperl/trunk/lib/ModPerl/Manifest.pm (original)
+++ perl/modperl/trunk/lib/ModPerl/Manifest.pm Mon Mar 21 19:43:15 2005
@@ -50,6 +50,7 @@
         while (my $line = <$fh>) {
              if ($line =~ /name\s*=\s*"([^"]*)"/) {
                 my $file = $1;
+                next if $file eq 'svn:this_dir';
                 next if !$file or -d "../$file" or $file =~ /^\./;
                 push @files, $dir ? "$dir/$file" : $file;
              }