summaryrefslogtreecommitdiff
path: root/ACE/bin/doxygen-convert-h.pl
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/bin/doxygen-convert-h.pl')
-rwxr-xr-xACE/bin/doxygen-convert-h.pl18
1 files 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);