⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 101197 in webkit


Ignore:
Timestamp:
Nov 26, 2011, 11:31:55 AM (15 years ago)
Author:
alex
Message:

2011-11-26 Alejandro G. Castro <alex@igalia.com>

Fix compilation after r101157.

Reviewed by Martin Robinson.

  • bindings/scripts/preprocessor.pm: (applyPreprocessor): In case we have a string with double-quotations (") we replace it with the empty string.
Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r101196 r101197  
     12011-11-26  Alejandro G. Castro  <alex@igalia.com>
     2
     3        Fix compilation after r101157.
     4
     5        Reviewed by Martin Robinson.
     6
     7        * bindings/scripts/preprocessor.pm:
     8        (applyPreprocessor): In case we have a string with
     9        double-quotations (") we replace it with the empty string.
     10
    1112011-11-26  Igor Oliveira  <igor.oliveira@openbossa.org>
    212
  • trunk/Source/WebCore/bindings/scripts/preprocessor.pm

    r101157 r101197  
    5454    }
    5555
    56     if (!$defines) {
     56    if (!$defines || ($defines eq "\"\"")) {
    5757        $defines = "";
    5858    }
Note: See TracChangeset for help on using the changeset viewer.