Changeset 87040 in webkit


Ignore:
Timestamp:
May 22, 2011 11:08:02 AM (13 years ago)
Author:
Patrick Gansterer
Message:

2011-05-22 Patrick Gansterer <Patrick Gansterer>

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:
Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r86977 r87040  
     12011-05-22  Patrick Gansterer  <paroga@webkit.org>
     2
     3        Reviewed by Darin Adler.
     4
     5        Use double quotes for filename arguments
     6        https://bugs.webkit.org/show_bug.cgi?id=61250
     7
     8        Windows does not support single quotes on the command line,
     9        so replace them with double quotes.
     10
     11        * Scripts/prepare-ChangeLog:
     12
    1132011-05-20  Simon Fraser  <simon.fraser@apple.com>
    214
  • trunk/Tools/Scripts/prepare-ChangeLog

    r83546 r87040  
    13041304    my @files = @_;
    13051305
    1306     my $filesString = "'" . join ("' '", @files) . "'";
     1306    my $filesString = "\"" . join ("\" \"", @files) . "\"";
    13071307    my $command;
    13081308    if ($isSVN) {
Note: See TracChangeset for help on using the changeset viewer.