Skip to content

Commit

Permalink
Remove references to .svn
Browse files Browse the repository at this point in the history
  • Loading branch information
alexmv committed Sep 30, 2009
1 parent f11c4d4 commit 81f0759
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 9 deletions.
8 changes: 4 additions & 4 deletions Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -461,10 +461,10 @@ POD2TEST_EXE = sbin/extract_pod_tests

testify-pods:
[ -d lib/t/autogen ] || mkdir lib/t/autogen
find lib -name \*pm |grep -v .svn | grep -v \*.in |xargs -n 1 $(PERL) $(POD2TEST_EXE)
find bin -type f |grep -v .svn | grep -v \~ | grep -v "\.in" | xargs -n 1 $(PERL) $(POD2TEST_EXE)
find lib -name \*pm |grep -v .svn | grep -v \*.in |xargs -n 1 $(PERL) $(POD2TEST_EXE)
find bin -type f |grep -v .svn | grep -v \~ | grep -v "\.in" | xargs -n 1 $(PERL) $(POD2TEST_EXE)
find lib -name \*pm | grep -v \*.in |xargs -n 1 $(PERL) $(POD2TEST_EXE)
find bin -type f | grep -v \~ | grep -v "\.in" | xargs -n 1 $(PERL) $(POD2TEST_EXE)
find lib -name \*pm | grep -v \*.in |xargs -n 1 $(PERL) $(POD2TEST_EXE)
find bin -type f | grep -v \~ | grep -v "\.in" | xargs -n 1 $(PERL) $(POD2TEST_EXE)



Expand Down
4 changes: 0 additions & 4 deletions lib/t/regression/00-mason-syntax.t
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,6 @@ find( {
no_chdir => 1,
wanted => sub {
return if /\.(?:jpe?g|png|gif|rej|\~)$/i;
if (m!/\.svn$!) {
$File::Find::prune = 1;
return;
}
return unless -f $_;
diag "testing $_" if $ENV{'TEST_VERBOSE'};
eval { compile_file($_) } and return;
Expand Down
2 changes: 1 addition & 1 deletion sbin/extract-message-catalog
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ sub extract_strings_from_code {

local $/;
return if ( -d $_ );
return if ( $File::Find::dir =~ 'lib/blib|lib/t/autogen|var|m4|local|\.svn' );
return if ( $File::Find::dir =~ 'lib/blib|lib/t/autogen|var|m4|local' );
return if ( /\.po$|\.bak$|~|,D|,B$|extract-message-catalog$/ );
return if ( /^[\.#]/ );
return if ( -f "$_.in" );
Expand Down

0 comments on commit 81f0759

Please sign in to comment.