Changeset 47061 in webkit


Ignore:
Timestamp:
Aug 11, 2009 2:13:41 PM (15 years ago)
Author:
pkasting@chromium.org
Message:

https://bugs.webkit.org/show_bug.cgi?id=27323
Handle arbitrary line endings when manufacturing patches for additions
with history.

Reviewed by Darin Adler.

  • Scripts/svn-create-patch:
Location:
trunk/WebKitTools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKitTools/ChangeLog

    r47056 r47061  
    2929        * DumpRenderTree/win/UIDelegate.h:
    3030        * Scripts/build-webkit:
     31
     322009-08-11  Peter Kasting  <pkasting@google.com>
     33
     34        Reviewed by Darin Adler.
     35
     36        https://bugs.webkit.org/show_bug.cgi?id=27323
     37        Handle arbitrary line endings when manufacturing patches for additions
     38        with history.
     39
     40        * Scripts/svn-create-patch:
    3141
    32422009-08-11  Peter Kasting  <pkasting@google.com>
  • trunk/WebKitTools/Scripts/svn-create-patch

    r46670 r47061  
    157157    open INFO, "svn info '$infoPath' |" or die;
    158158    while (<INFO>) {
    159         if (/^URL: (.+)/) {
     159        if (/^URL: (.*\S+)\s*$/) {
    160160            $baseUrl = $1;
    161161        }
     
    201201    open INFO, "svn info '$file' |" or die;
    202202    while (<INFO>) {
    203         if (/^Copied From URL: (.+)/) {
     203        if (/^Copied From URL: (.*\S+)\s*$/) {
    204204            $sourceFile = File::Spec->abs2rel($1, $baseUrl);
    205205        } elsif (/^Copied From Rev: ([0-9]+)/) {
Note: See TracChangeset for help on using the changeset viewer.