Title: [199158] trunk/Source/WebKit
Revision
199158
Author
[email protected]
Date
2016-04-07 09:37:42 -0700 (Thu, 07 Apr 2016)

Log Message

[CMake][Win] Generating autoversion.h of WebKitGUID is triggered again and again
https://bugs.webkit.org/show_bug.cgi?id=156332

Patch by Fujii Hironori <[email protected]> on 2016-04-07
Reviewed by Brent Fulgham.

* PlatformWin.cmake:
Correct the output path of autoversion.h.

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (199157 => 199158)


--- trunk/Source/WebKit/ChangeLog	2016-04-07 16:27:28 UTC (rev 199157)
+++ trunk/Source/WebKit/ChangeLog	2016-04-07 16:37:42 UTC (rev 199158)
@@ -1,3 +1,13 @@
+2016-04-07  Fujii Hironori  <[email protected]>
+
+        [CMake][Win] Generating autoversion.h of WebKitGUID is triggered again and again
+        https://bugs.webkit.org/show_bug.cgi?id=156332
+
+        Reviewed by Brent Fulgham.
+
+        * PlatformWin.cmake:
+        Correct the output path of autoversion.h.
+
 2016-04-06  Alex Christensen  <[email protected]>
 
         Fix CMake DumpRenderTree

Modified: trunk/Source/WebKit/PlatformWin.cmake (199157 => 199158)


--- trunk/Source/WebKit/PlatformWin.cmake	2016-04-07 16:27:28 UTC (rev 199157)
+++ trunk/Source/WebKit/PlatformWin.cmake	2016-04-07 16:37:42 UTC (rev 199158)
@@ -366,11 +366,11 @@
     win/Interfaces/Accessible2/AccessibleText.idl
     win/Interfaces/Accessible2/AccessibleText2.idl
     win/Interfaces/Accessible2/IA2CommonTypes.idl
-    "${DERIVED_SOURCES_WEBKIT_DIR}/autoversion.h"
+    "${DERIVED_SOURCES_WEBKIT_DIR}/include/autoversion.h"
 )
 
 add_custom_command(
-    OUTPUT ${DERIVED_SOURCES_WEBKIT_DIR}/autoversion.h
+    OUTPUT ${DERIVED_SOURCES_WEBKIT_DIR}/include/autoversion.h
     WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}
     COMMAND ${PERL_EXECUTABLE} ${WEBKIT_LIBRARIES_DIR}/tools/scripts/auto-version.pl ${DERIVED_SOURCES_WEBKIT_DIR}
     VERBATIM)
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to