Title: [201074] trunk/Source/WebCore
Revision
201074
Author
[email protected]
Date
2016-05-18 02:15:44 -0700 (Wed, 18 May 2016)

Log Message

Fix the allinone-build after r198669
https://bugs.webkit.org/show_bug.cgi?id=157798

Reviewed by Michael Catanzaro.

* CMakeLists.txt: Use DerivedSources.cpp only on Windows, it's broken everywhere else.

Modified Paths

Diff

Modified: trunk/Source/WebCore/CMakeLists.txt (201073 => 201074)


--- trunk/Source/WebCore/CMakeLists.txt	2016-05-18 08:41:50 UTC (rev 201073)
+++ trunk/Source/WebCore/CMakeLists.txt	2016-05-18 09:15:44 UTC (rev 201074)
@@ -3808,7 +3808,7 @@
 GENERATE_DOM_NAMES(XML ${WEBCORE_DIR}/xml/xmlattrs.in)
 list(APPEND WebCore_DERIVED_SOURCES ${DERIVED_SOURCES_WEBCORE_DIR}/XMLNames.cpp)
 
-if (ENABLE_ALLINONE_BUILD)
+if (ENABLE_ALLINONE_BUILD AND WIN32)
     message(STATUS "All-in-One DerivedSources build is enabled.")
     PROCESS_ALLINONE_FILE("${WebCore_DERIVED_SOURCES}" DerivedSources.cpp newSources TRUE)
     set(WebCore_DERIVED_SOURCES DerivedSources.cpp ${newSources})

Modified: trunk/Source/WebCore/ChangeLog (201073 => 201074)


--- trunk/Source/WebCore/ChangeLog	2016-05-18 08:41:50 UTC (rev 201073)
+++ trunk/Source/WebCore/ChangeLog	2016-05-18 09:15:44 UTC (rev 201074)
@@ -1,3 +1,12 @@
+2016-05-18  Csaba Osztrogonác  <[email protected]>
+
+        Fix the allinone-build after r198669
+        https://bugs.webkit.org/show_bug.cgi?id=157798
+
+        Reviewed by Michael Catanzaro.
+
+        * CMakeLists.txt: Use DerivedSources.cpp only on Windows, it's broken everywhere else.
+
 2016-05-17  Antti Koivisto  <[email protected]>
 
         Cascading order for !important properties in ::slotted and ::host rules is incorrect
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to