Title: [205291] trunk/Source/WebCore
- Revision
- 205291
- Author
- commit-qu...@webkit.org
- Date
- 2016-09-01 07:54:55 -0700 (Thu, 01 Sep 2016)
Log Message
Fix the Mac cmake clean build issue
https://bugs.webkit.org/show_bug.cgi?id=157261
Patch by Fujii Hironori <hironori.fu...@sony.com> 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: trunk/Source/WebCore/CMakeLists.txt (205290 => 205291)
--- trunk/Source/WebCore/CMakeLists.txt 2016-09-01 14:22:33 UTC (rev 205290)
+++ trunk/Source/WebCore/CMakeLists.txt 2016-09-01 14:54:55 UTC (rev 205291)
@@ -3868,6 +3868,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: trunk/Source/WebCore/ChangeLog (205290 => 205291)
--- trunk/Source/WebCore/ChangeLog 2016-09-01 14:22:33 UTC (rev 205290)
+++ trunk/Source/WebCore/ChangeLog 2016-09-01 14:54:55 UTC (rev 205291)
@@ -1,3 +1,15 @@
+2016-09-01 Fujii Hironori <hironori.fu...@sony.com>
+
+ 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 <akl...@apple.com>
FocusController should pass KeyboardEvent around by reference.
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes