Title: [146675] trunk/Source/WebKit/gtk
Revision
146675
Author
[email protected]
Date
2013-03-22 16:28:33 -0700 (Fri, 22 Mar 2013)

Log Message

[GTK] [gyp] Feature defines are not space separated
https://bugs.webkit.org/show_bug.cgi?id=113108

Reviewed by Gustavo Noronha Silva.

* gyp/configure.ac: Properly export feature defines for gyp during
configure phase.

Modified Paths

Diff

Modified: trunk/Source/WebKit/gtk/ChangeLog (146674 => 146675)


--- trunk/Source/WebKit/gtk/ChangeLog	2013-03-22 23:23:07 UTC (rev 146674)
+++ trunk/Source/WebKit/gtk/ChangeLog	2013-03-22 23:28:33 UTC (rev 146675)
@@ -1,3 +1,13 @@
+2013-03-22  Martin Robinson  <[email protected]>
+
+        [GTK] [gyp] Feature defines are not space separated
+        https://bugs.webkit.org/show_bug.cgi?id=113108
+
+        Reviewed by Gustavo Noronha Silva.
+
+        * gyp/configure.ac: Properly export feature defines for gyp during
+        configure phase.
+
 2013-03-22  Mario Sanchez Prada  <[email protected]>
 
         [GTK] Include the right GL header for GLES2

Modified: trunk/Source/WebKit/gtk/gyp/configure.ac (146674 => 146675)


--- trunk/Source/WebKit/gtk/gyp/configure.ac	2013-03-22 23:23:07 UTC (rev 146674)
+++ trunk/Source/WebKit/gtk/gyp/configure.ac	2013-03-22 23:28:33 UTC (rev 146675)
@@ -26,7 +26,7 @@
 m4_include([WebKitMacros/SetupWebKitFeatures.m4])
 
 # Expose the WebKit features as one long string to the configure template processor.
-WEBKIT_FEATURES=`cat WebKitFeatures.txt | tr -d '\n'`
+WEBKIT_FEATURES=`cat WebKitFeatures.txt | tr '\n' ' '`
 AC_SUBST(WEBKIT_FEATURES)
 
 AC_SUBST(TOPLEVEL_DIRECTORY)
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to