Title: [139916] trunk
Revision
139916
Author
[email protected]
Date
2013-01-16 13:23:34 -0800 (Wed, 16 Jan 2013)

Log Message

[CMake] Report actual values for feature configuration (instead of the default)
https://bugs.webkit.org/show_bug.cgi?id=107010

Reviewed by Laszlo Gombos.

* Source/cmake/WebKitFeatures.cmake:

Modified Paths

Diff

Modified: trunk/ChangeLog (139915 => 139916)


--- trunk/ChangeLog	2013-01-16 21:18:18 UTC (rev 139915)
+++ trunk/ChangeLog	2013-01-16 21:23:34 UTC (rev 139916)
@@ -1,3 +1,12 @@
+2013-01-16  Hugo Parente Lima  <[email protected]>
+
+        [CMake] Report actual values for feature configuration (instead of the default)
+        https://bugs.webkit.org/show_bug.cgi?id=107010
+
+        Reviewed by Laszlo Gombos.
+
+        * Source/cmake/WebKitFeatures.cmake:
+
 2013-01-16  Gyuyoung Kim  <[email protected]>
 
         [EFL] Move 'DefaultTheme' folder to WebCore/platform/efl

Modified: trunk/Source/cmake/WebKitFeatures.cmake (139915 => 139916)


--- trunk/Source/cmake/WebKitFeatures.cmake	2013-01-16 21:18:18 UTC (rev 139915)
+++ trunk/Source/cmake/WebKitFeatures.cmake	2013-01-16 21:23:34 UTC (rev 139916)
@@ -169,7 +169,7 @@
             set(FEATURE_DEFINES_WITH_SPACE_SEPARATOR "${FEATURE_DEFINES_WITH_SPACE_SEPARATOR} ${_name}")
         endif ()
 
-        set(_MESSAGE "${_MESSAGE} ${_WEBKIT_AVAILABLE_OPTIONS_INITALVALUE_${_name}}")
+        set(_MESSAGE "${_MESSAGE} ${${_name}}")
         message(STATUS "${_MESSAGE}")
     endforeach ()
 endmacro()
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to