summaryrefslogtreecommitdiffstats
path: root/Tools/Scripts/VCSUtils.pm
diff options
context:
space:
mode:
Diffstat (limited to 'Tools/Scripts/VCSUtils.pm')
-rw-r--r--Tools/Scripts/VCSUtils.pm5
1 files changed, 4 insertions, 1 deletions
diff --git a/Tools/Scripts/VCSUtils.pm b/Tools/Scripts/VCSUtils.pm
index e61774c..70e9acd 100644
--- a/Tools/Scripts/VCSUtils.pm
+++ b/Tools/Scripts/VCSUtils.pm
@@ -398,7 +398,10 @@ sub adjustPathForRecentRenamings($)
{
my ($fullPath) = @_;
- if ($fullPath =~ m|^WebCore/| || $fullPath =~ m|^JavaScriptCore/|) {
+ if ($fullPath =~ m|^WebCore/|
+ || $fullPath =~ m|^JavaScriptCore/|
+ || $fullPath =~ m|^WebKit/|
+ || $fullPath =~ m|^WebKit2/|) {
return "Source/$fullPath";
}
return $fullPath;