Title: [147886] trunk/Source/WebCore
Revision
147886
Author
[email protected]
Date
2013-04-07 16:56:39 -0700 (Sun, 07 Apr 2013)

Log Message

[EFL] --minimal build fails because of incorrect usage of GENERATE_THEME in CMakeLists.txt
https://bugs.webkit.org/show_bug.cgi?id=113902

Unreviewed.

Patch by Ed Bartosh <[email protected]> on 2013-04-07

* platform/efl/DefaultTheme/CMakeLists.txt:
Put possibly empty variable after non-empty to avoid space
at the beginning of string parameter

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (147885 => 147886)


--- trunk/Source/WebCore/ChangeLog	2013-04-07 23:41:17 UTC (rev 147885)
+++ trunk/Source/WebCore/ChangeLog	2013-04-07 23:56:39 UTC (rev 147886)
@@ -1,3 +1,14 @@
+2013-04-07  Ed Bartosh  <[email protected]>
+
+        [EFL] --minimal build fails because of incorrect usage of GENERATE_THEME in CMakeLists.txt
+        https://bugs.webkit.org/show_bug.cgi?id=113902
+
+        Unreviewed.
+
+        * platform/efl/DefaultTheme/CMakeLists.txt:
+        Put possibly empty variable after non-empty to avoid space
+        at the beginning of string parameter
+
 2013-04-07  Patrick Gansterer  <[email protected]>
 
         Add default implementation for KURL::fileSystemPath()

Modified: trunk/Source/WebCore/platform/efl/DefaultTheme/CMakeLists.txt (147885 => 147886)


--- trunk/Source/WebCore/platform/efl/DefaultTheme/CMakeLists.txt	2013-04-07 23:41:17 UTC (rev 147885)
+++ trunk/Source/WebCore/platform/efl/DefaultTheme/CMakeLists.txt	2013-04-07 23:56:39 UTC (rev 147886)
@@ -135,7 +135,7 @@
     list(APPEND DefaultTheme_DEFINITION "-DENABLE_PROGRESS_ELEMENT")
 endif ()
 
-GENERATE_THEME(DefaultTheme "default.edj" "${DefaultTheme_DEFINITION} -DCURSOR_IMAGE_DIR=${Resources_DIR}")
+GENERATE_THEME(DefaultTheme "default.edj" "-DCURSOR_IMAGE_DIR=${Resources_DIR} ${DefaultTheme_DEFINITION}")
 install(FILES "${THEME_BINARY_DIR}/default.edj" DESTINATION ${DATA_INSTALL_DIR}/themes)
 
 if (ENABLE_API_TESTS)
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to