From d09cdd5a2c7a5c0c83f58c7954dcab4036c33ebd Mon Sep 17 00:00:00 2001 From: Johnny Willemsen Date: Wed, 14 Oct 2020 14:31:50 +0200 Subject: [PATCH] Removed special handling for subversion files --- ACE/bin/doxygen-convert-h.pl | 18 ++++++++---------- 1 file changed, 8 insertions(+), 10 deletions(-) diff --git a/ACE/bin/doxygen-convert-h.pl b/ACE/bin/doxygen-convert-h.pl index b8104f39f22..253e351e1a2 100755 --- a/ACE/bin/doxygen-convert-h.pl +++ b/ACE/bin/doxygen-convert-h.pl @@ -41,16 +41,14 @@ sub recursive_find { if (opendir($fh, $file)) { foreach my $f (grep(!/^\.\.?$/, readdir($fh))) { - if ($f ne '.svn') { - my($full) = "$file/$f"; - if (-d $full) { - push(@rfiles, recursive_find($full)); - } - else { - push(@rfiles, $full) - if ($f =~ /\.(h|hxx|hpp|hh|inl|idl|cpp|cxx|cc|c|C)$/) - ; - } + my($full) = "$file/$f"; + if (-d $full) { + push(@rfiles, recursive_find($full)); + } + else { + push(@rfiles, $full) + if ($f =~ /\.(h|hxx|hpp|hh|inl|idl|cpp|cxx|cc|c|C)$/) + ; } } closedir($fh); -- 2.11.4.GIT