Title: [93630] trunk/Tools
- Revision
- 93630
- Author
- [email protected]
- Date
- 2011-08-23 13:08:09 -0700 (Tue, 23 Aug 2011)
Log Message
Add missing quotes around filenames in mergeChangeLogs
https://bugs.webkit.org/show_bug.cgi?id=66794
Reviewed by Adam Roben.
* Scripts/VCSUtils.pm:
(mergeChangeLogs):
Modified Paths
Diff
Modified: trunk/Tools/ChangeLog (93629 => 93630)
--- trunk/Tools/ChangeLog 2011-08-23 19:58:33 UTC (rev 93629)
+++ trunk/Tools/ChangeLog 2011-08-23 20:08:09 UTC (rev 93630)
@@ -1,5 +1,15 @@
2011-08-23 Patrick Gansterer <[email protected]>
+ Add missing quotes around filenames in mergeChangeLogs
+ https://bugs.webkit.org/show_bug.cgi?id=66794
+
+ Reviewed by Adam Roben.
+
+ * Scripts/VCSUtils.pm:
+ (mergeChangeLogs):
+
+2011-08-23 Patrick Gansterer <[email protected]>
+
webkit-perl tests fail on win32 Perl due to lack of list form of pipe open implementation
https://bugs.webkit.org/show_bug.cgi?id=49080
Modified: trunk/Tools/Scripts/VCSUtils.pm (93629 => 93630)
--- trunk/Tools/Scripts/VCSUtils.pm 2011-08-23 19:58:33 UTC (rev 93629)
+++ trunk/Tools/Scripts/VCSUtils.pm 2011-08-23 20:08:09 UTC (rev 93630)
@@ -1704,7 +1704,7 @@
unlink("${fileNewer}.orig");
unlink("${fileNewer}.rej");
- open(PATCH, "| patch --force --fuzz=3 --binary $fileNewer > " . File::Spec->devnull()) or die $!;
+ open(PATCH, "| patch --force --fuzz=3 --binary \"$fileNewer\" > " . File::Spec->devnull()) or die $!;
if ($traditionalReject) {
print PATCH $patch;
} else {
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes