- fixed cvs-create-patch --include produces incorrect paths
(http://bugzilla.opendarwin.org/show_bug.cgi?id=5846)
* Scripts/cvs-create-patch: produce proper paths for new files.
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@11309
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2005-11-27 Oliver Hunt <ojh16@student.canterbury.ac.nz>
+
+ Reviewed and committed by Maciej.
+
+ - fixed cvs-create-patch --include produces incorrect paths
+ (http://bugzilla.opendarwin.org/show_bug.cgi?id=5846)
+
+ * Scripts/cvs-create-patch: produce proper paths for new files.
+
2005-11-21 Eric Seidel <eseidel@apple.com>
Reviewed by hyatt.
my $unknown = $1;
if ($includeUnknowns && $unknown !~ /^\./) {
if (-d $unknown) {
- addNewDirectory($indexPath, $unknown);
+ addNewDirectory($dir, $unknown);
} else {
- addNewFile($indexPath, $unknown);
+ addNewFile($dir, $unknown);
}
}
} else {