Reviewed by aroben.
* Scripts/find-extra-includes: fix path matching regex to not match ".patch"
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@26839
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2007-10-20 Eric Seidel <eric@webkit.org>
+
+ Reviewed by aroben.
+
+ * Scripts/find-extra-includes: fix path matching regex to not match ".patch"
+
2007-10-20 Eric Seidel <eric@webkit.org>
Reviewed by darin.
return;
}
- if ($file !~ /^\./ && $file =~ /.(h|cpp|c|mm|m)$/) {
+ if ($file !~ /^\./ && $file =~ /\.(h|cpp|c|mm|m)$/) {
$paths{$file} = $File::Find::name;
open FILE, $file or die;
while (<FILE>) {