Title: [181435] trunk/Source/_javascript_Core
Revision
181435
Author
[email protected]
Date
2015-03-12 03:27:45 -0700 (Thu, 12 Mar 2015)

Log Message

[cmake] Fix the incremental build issue revealed by r181419
https://bugs.webkit.org/show_bug.cgi?id=142613

Reviewed by Carlos Garcia Campos.

* CMakeLists.txt:

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/CMakeLists.txt (181434 => 181435)


--- trunk/Source/_javascript_Core/CMakeLists.txt	2015-03-12 06:37:53 UTC (rev 181434)
+++ trunk/Source/_javascript_Core/CMakeLists.txt	2015-03-12 10:27:45 UTC (rev 181435)
@@ -997,6 +997,7 @@
 add_custom_command(
     OUTPUT ${DERIVED_SOURCES_JAVASCRIPTCORE_DIR}/KeywordLookup.h
     MAIN_DEPENDENCY ${CMAKE_CURRENT_SOURCE_DIR}/KeywordLookupGenerator.py
+    DEPENDS ${CMAKE_CURRENT_SOURCE_DIR}/parser/Keywords.table
     COMMAND ${PYTHON_EXECUTABLE} ${CMAKE_CURRENT_SOURCE_DIR}/KeywordLookupGenerator.py ${CMAKE_CURRENT_SOURCE_DIR}/parser/Keywords.table > ${DERIVED_SOURCES_JAVASCRIPTCORE_DIR}/KeywordLookup.h
     VERBATIM)
 ADD_SOURCE_DEPENDENCIES(${CMAKE_CURRENT_SOURCE_DIR}/parser/Lexer.cpp ${DERIVED_SOURCES_JAVASCRIPTCORE_DIR}/KeywordLookup.h)

Modified: trunk/Source/_javascript_Core/ChangeLog (181434 => 181435)


--- trunk/Source/_javascript_Core/ChangeLog	2015-03-12 06:37:53 UTC (rev 181434)
+++ trunk/Source/_javascript_Core/ChangeLog	2015-03-12 10:27:45 UTC (rev 181435)
@@ -1,3 +1,12 @@
+2015-03-12  Csaba Osztrogonác  <[email protected]>
+
+        [cmake] Fix the incremental build issue revealed by r181419
+        https://bugs.webkit.org/show_bug.cgi?id=142613
+
+        Reviewed by Carlos Garcia Campos.
+
+        * CMakeLists.txt:
+
 2015-03-11  Ryosuke Niwa  <[email protected]>
 
         "static" should not be a reserved keyword in non-strict mode even when ES6 class is enabled
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to