SVN commit 465826 by goutte: Oops, the check if a directory is named "internal" was made against the wrong variable. M +1 -1 check_po_files --- trunk/l10n/scripts/check_po_files #465825:465826 @@ -488,7 +488,7 @@ if (-d $filename) { # skip directories with the name "internal" # (PO files being there might be non-KDE and should not be checked with KDE criteria.) - next FILENAMELOOP if ( $filename =~ /^internal$/ ); + next FILENAMELOOP if ( $f =~ /^internal$/ ); &recursive_check($filename); } elsif (-f $filename && $filename =~ /\.po$/) {