Title: [161426] trunk
Revision
161426
Author
g...@gnome.org
Date
2014-01-07 07:29:17 -0800 (Tue, 07 Jan 2014)

Log Message

Unreviewed GTK/CMake build fix: use the correct location for docs-build.stamp
in output and dependencies declarations, so docs are not built needlessly
every build.

Patch by Gustavo Noronha Silva <gustavo.noro...@collabora.com> on 2014-01-07

* Source/PlatformGTK.cmake:

Modified Paths

Diff

Modified: trunk/ChangeLog (161425 => 161426)


--- trunk/ChangeLog	2014-01-07 15:24:52 UTC (rev 161425)
+++ trunk/ChangeLog	2014-01-07 15:29:17 UTC (rev 161426)
@@ -1,3 +1,11 @@
+2014-01-07  Gustavo Noronha Silva  <gustavo.noro...@collabora.com>
+
+        Unreviewed GTK/CMake build fix: use the correct location for docs-build.stamp
+        in output and dependencies declarations, so docs are not built needlessly
+        every build.
+
+        * Source/PlatformGTK.cmake:
+
 2014-01-04  Carlos Garcia Campos  <cgar...@igalia.com>
 
         [GTK] Move all GTK/GObject unit tests to Tools/TestWebKitAPI

Modified: trunk/Source/PlatformGTK.cmake (161425 => 161426)


--- trunk/Source/PlatformGTK.cmake	2014-01-07 15:24:52 UTC (rev 161425)
+++ trunk/Source/PlatformGTK.cmake	2014-01-07 15:29:17 UTC (rev 161426)
@@ -30,7 +30,7 @@
 endif ()
 
 add_custom_command(
-    OUTPUT docs-build.stamp
+    OUTPUT "${CMAKE_BINARY_DIR}/docs-build.stamp"
     DEPENDS ${DocumentationDependencies}
     COMMAND CC="${CMAKE_C_COMPILER}" ${CMAKE_SOURCE_DIR}/Tools/gtk/generate-gtkdoc
     COMMAND touch docs-build.stamp
@@ -38,7 +38,7 @@
 )
 
 add_custom_target(fake-docs-target ALL
-    DEPENDS docs-build.stamp
+    DEPENDS "${CMAKE_BINARY_DIR}/docs-build.stamp"
 )
 
 if (ENABLE_WEBKIT)
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to