From kde-commits Fri Sep 30 22:39:03 2005 From: Nicolas Goutte Date: Fri, 30 Sep 2005 22:39:03 +0000 To: kde-commits Subject: l10n/scripts Message-Id: <1128119943.519913.28746.nullmailer () svn ! kde ! org> X-MARC-Message: https://marc.info/?l=kde-commits&m=112811994920065 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$/) {