Title: [101197] trunk/Source/WebCore
- Revision
- 101197
- Author
- [email protected]
- Date
- 2011-11-26 11:31:55 -0800 (Sat, 26 Nov 2011)
Log Message
2011-11-26 Alejandro G. Castro <[email protected]>
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.
Modified Paths
Diff
Modified: trunk/Source/WebCore/ChangeLog (101196 => 101197)
--- trunk/Source/WebCore/ChangeLog 2011-11-26 18:00:53 UTC (rev 101196)
+++ trunk/Source/WebCore/ChangeLog 2011-11-26 19:31:55 UTC (rev 101197)
@@ -1,3 +1,13 @@
+2011-11-26 Alejandro G. Castro <[email protected]>
+
+ 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.
+
2011-11-26 Igor Oliveira <[email protected]>
[TexMapper][WK2][Qt] Simple opacity animations are not working
Modified: trunk/Source/WebCore/bindings/scripts/preprocessor.pm (101196 => 101197)
--- trunk/Source/WebCore/bindings/scripts/preprocessor.pm 2011-11-26 18:00:53 UTC (rev 101196)
+++ trunk/Source/WebCore/bindings/scripts/preprocessor.pm 2011-11-26 19:31:55 UTC (rev 101197)
@@ -53,7 +53,7 @@
$preprocessor = $gccLocation . " -E -P -x c++";
}
- if (!$defines) {
+ if (!$defines || ($defines eq "\"\"")) {
$defines = "";
}
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes