Title: [148718] trunk
Revision
148718
Author
[email protected]
Date
2013-04-18 17:38:28 -0700 (Thu, 18 Apr 2013)

Log Message

[EFL] Build break when using cmake without CMAKE_BUILD_TYPE
https://bugs.webkit.org/show_bug.cgi?id=114835

Unreviewed build fix.

Patch by Ryuan Choi <[email protected]> on 2013-04-18

* Source/cmake/OptionsEfl.cmake:

Modified Paths

Diff

Modified: trunk/ChangeLog (148717 => 148718)


--- trunk/ChangeLog	2013-04-19 00:25:16 UTC (rev 148717)
+++ trunk/ChangeLog	2013-04-19 00:38:28 UTC (rev 148718)
@@ -1,3 +1,12 @@
+2013-04-18  Ryuan Choi  <[email protected]>
+
+        [EFL] Build break when using cmake without CMAKE_BUILD_TYPE
+        https://bugs.webkit.org/show_bug.cgi?id=114835
+
+        Unreviewed build fix.
+
+        * Source/cmake/OptionsEfl.cmake:
+
 2013-04-16  Patrick Gansterer  <[email protected]>
 
         [CMake] Do not use _javascript_CORE_DIR in add_custom_command() of _javascript_core project

Modified: trunk/Source/cmake/OptionsEfl.cmake (148717 => 148718)


--- trunk/Source/cmake/OptionsEfl.cmake	2013-04-19 00:25:16 UTC (rev 148717)
+++ trunk/Source/cmake/OptionsEfl.cmake	2013-04-19 00:38:28 UTC (rev 148718)
@@ -9,7 +9,7 @@
     set(ENABLE_WEBKIT2 ON)
 endif ()
 
-if (${CMAKE_BUILD_TYPE} STREQUAL "Debug" AND NOT SHARED_CORE)
+if ("${CMAKE_BUILD_TYPE}" STREQUAL "Debug" AND NOT SHARED_CORE)
     message(FATAL_ERROR "Turn on the SHARED_CORE flag to make a debug build - e.g.\n build-webkit --efl --debug --cmakeargs=\"-DSHARED_CORE=ON\".\n")
 endif ()
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to