Title: [205619] releases/WebKitGTK/webkit-2.14/Source/WebCore
Revision
205619
Author
[email protected]
Date
2016-09-08 03:55:40 -0700 (Thu, 08 Sep 2016)

Log Message

Merge r205291 - Fix the Mac cmake clean build issue
https://bugs.webkit.org/show_bug.cgi?id=157261

Patch by Fujii Hironori <[email protected]> on 2016-09-01
Reviewed by Michael Catanzaro.

Building WebCoreDerivedSources target failed due to the race
condition with building ForwardingHeaders of _javascript_Core.

* CMakeLists.txt: Make WebCoreDerivedSources depends on _javascript_Core.

Modified Paths

Diff

Modified: releases/WebKitGTK/webkit-2.14/Source/WebCore/CMakeLists.txt (205618 => 205619)


--- releases/WebKitGTK/webkit-2.14/Source/WebCore/CMakeLists.txt	2016-09-08 10:28:02 UTC (rev 205618)
+++ releases/WebKitGTK/webkit-2.14/Source/WebCore/CMakeLists.txt	2016-09-08 10:55:40 UTC (rev 205619)
@@ -3867,6 +3867,7 @@
 # files on OS X.
 add_library(WebCoreDerivedSources STATIC ${WebCore_DERIVED_SOURCES})
 set_target_properties(WebCoreDerivedSources PROPERTIES OUTPUT_NAME WebCoreDerivedSources${DEBUG_SUFFIX})
+add_dependencies(WebCoreDerivedSources _javascript_Core)
 if (NOT WIN32)
     list(APPEND WebCore_LIBRARIES WebCoreDerivedSources)
 endif ()

Modified: releases/WebKitGTK/webkit-2.14/Source/WebCore/ChangeLog (205618 => 205619)


--- releases/WebKitGTK/webkit-2.14/Source/WebCore/ChangeLog	2016-09-08 10:28:02 UTC (rev 205618)
+++ releases/WebKitGTK/webkit-2.14/Source/WebCore/ChangeLog	2016-09-08 10:55:40 UTC (rev 205619)
@@ -1,3 +1,15 @@
+2016-09-01  Fujii Hironori  <[email protected]>
+
+        Fix the Mac cmake clean build issue
+        https://bugs.webkit.org/show_bug.cgi?id=157261
+
+        Reviewed by Michael Catanzaro.
+
+        Building WebCoreDerivedSources target failed due to the race
+        condition with building ForwardingHeaders of _javascript_Core.
+
+        * CMakeLists.txt: Make WebCoreDerivedSources depends on _javascript_Core.
+
 2016-09-01  Andreas Kling  <[email protected]>
 
         FocusController should pass KeyboardEvent around by reference.
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to