Changeset 83395 in webkit


Ignore:
Timestamp:
Apr 9, 2011 11:17:24 PM (13 years ago)
Author:
levin@chromium.org
Message:

2011-04-09 David Levin <levin@chromium.org>

Unreviewed, rolling out r83394.
http://trac.webkit.org/changeset/83394
https://bugs.webkit.org/show_bug.cgi?id=53625

Patch was incorrect as noted in the bug.

  • Scripts/svn-apply:
Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r83394 r83395  
     12011-04-09  David Levin  <levin@chromium.org>
     2
     3        Unreviewed, rolling out r83394.
     4        http://trac.webkit.org/changeset/83394
     5        https://bugs.webkit.org/show_bug.cgi?id=53625
     6
     7        Patch was incorrect as noted in the bug.
     8
     9        * Scripts/svn-apply:
     10
    1112011-04-09  David Levin  <levin@chromium.org>
    212
  • trunk/Tools/Scripts/svn-apply

    r83394 r83395  
    332332            unlink("${fullPath}.orig") if (! $changeLogDotOrigExisted);
    333333        } else {
    334             # Ensure that patches for files with DOS line endings also have DOS line endings.
    335             if (basename($fullPath) =~ /\.vcproj$/ || basename($fullPath) =~ /\.vsprops$/) {
    336                 # Convert all instances of newlines to \r\r\n. Why are there two \r's?
    337                 # Think of it as escaping. Patch will convert \r\n to \n, so \r\r\n becomes \r\n.
    338                 $patch =~ s/\r{0,2}\n/\r\r\n/g;
    339             }
    340334            applyPatch($patch, $fullPath) if $patch;
    341335        }
Note: See TracChangeset for help on using the changeset viewer.