Title: [87040] trunk/Tools
Revision
87040
Author
par...@webkit.org
Date
2011-05-22 11:08:02 -0700 (Sun, 22 May 2011)

Log Message

2011-05-22  Patrick Gansterer  <par...@webkit.org>

        Reviewed by Darin Adler.

        Use double quotes for filename arguments
        https://bugs.webkit.org/show_bug.cgi?id=61250

        Windows does not support single quotes on the command line,
        so replace them with double quotes.

        * Scripts/prepare-ChangeLog:

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (87039 => 87040)


--- trunk/Tools/ChangeLog	2011-05-22 17:35:39 UTC (rev 87039)
+++ trunk/Tools/ChangeLog	2011-05-22 18:08:02 UTC (rev 87040)
@@ -1,3 +1,15 @@
+2011-05-22  Patrick Gansterer  <par...@webkit.org>
+
+        Reviewed by Darin Adler.
+
+        Use double quotes for filename arguments
+        https://bugs.webkit.org/show_bug.cgi?id=61250
+
+        Windows does not support single quotes on the command line,
+        so replace them with double quotes.
+
+        * Scripts/prepare-ChangeLog:
+
 2011-05-20  Simon Fraser  <simon.fra...@apple.com>
 
         Reviewed by Sam Weinig.

Modified: trunk/Tools/Scripts/prepare-ChangeLog (87039 => 87040)


--- trunk/Tools/Scripts/prepare-ChangeLog	2011-05-22 17:35:39 UTC (rev 87039)
+++ trunk/Tools/Scripts/prepare-ChangeLog	2011-05-22 18:08:02 UTC (rev 87040)
@@ -1303,7 +1303,7 @@
 {
     my @files = @_;
 
-    my $filesString = "'" . join ("' '", @files) . "'";
+    my $filesString = "\"" . join ("\" \"", @files) . "\"";
     my $command;
     if ($isSVN) {
         $command = "$SVN stat $filesString";
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to