Title: [103817] trunk/Source/WebCore
Revision
103817
Author
alexis.men...@openbossa.org
Date
2011-12-29 12:34:37 -0800 (Thu, 29 Dec 2011)

Log Message

Enable the [Supplemental] IDL on Qt.
https://bugs.webkit.org/show_bug.cgi?id=75274

Reviewed by Andreas Kling.

http://trac.webkit.org/changeset/103783 broke the Qt SL bot.
This patch fixes the problem by using 'tr' rather than 'sed' which
seems to be more consistent between Mac and Linux.

* DerivedSources.pri:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (103816 => 103817)


--- trunk/Source/WebCore/ChangeLog	2011-12-29 20:18:22 UTC (rev 103816)
+++ trunk/Source/WebCore/ChangeLog	2011-12-29 20:34:37 UTC (rev 103817)
@@ -1,3 +1,16 @@
+2011-12-29  Alexis Menard  <alexis.men...@openbossa.org>
+
+        Enable the [Supplemental] IDL on Qt.
+        https://bugs.webkit.org/show_bug.cgi?id=75274
+
+        Reviewed by Andreas Kling.
+
+        http://trac.webkit.org/changeset/103783 broke the Qt SL bot.
+        This patch fixes the problem by using 'tr' rather than 'sed' which
+        seems to be more consistent between Mac and Linux.
+
+        * DerivedSources.pri:
+
 2011-12-29  Vsevolod Vlasov  <vse...@chromium.org>
 
         Web Inspector: Scripts navigator should support incremental search by typing.

Modified: trunk/Source/WebCore/DerivedSources.pri (103816 => 103817)


--- trunk/Source/WebCore/DerivedSources.pri	2011-12-29 20:18:22 UTC (rev 103816)
+++ trunk/Source/WebCore/DerivedSources.pri	2011-12-29 20:34:37 UTC (rev 103817)
@@ -659,7 +659,8 @@
 
 resolveSupplemental.input = RESOLVE_SUPPLEMENTAL_SCRIPT # dummy input to fire this rule
 resolveSupplemental.script = $$RESOLVE_SUPPLEMENTAL_SCRIPT
-resolveSupplemental.commands = echo $(addprefix $${ROOT_WEBKIT_DIR}/Source/WebCore/, $$IDL_BINDINGS) | sed \'s/\\s/\\n/g\' > $$IDL_FILES_TMP && \
+# FIXME : We need to use only perl at some point.
+resolveSupplemental.commands = echo $(addprefix $${ROOT_WEBKIT_DIR}/Source/WebCore/, $$IDL_BINDINGS) | tr \' \' \'\n\' > $$IDL_FILES_TMP && \
                                perl -I$$PWD/bindings/scripts $$resolveSupplemental.script \
                                --defines \"$${FEATURE_DEFINES_JAVASCRIPT}\" \
                                --idlFilesList $$IDL_FILES_TMP \
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to