Title: [165328] trunk/Tools
Revision
165328
Author
mrobin...@webkit.org
Date
2014-03-08 00:08:46 -0800 (Sat, 08 Mar 2014)

Log Message

Unreviewed build fix for GTKbuild after the switch to CMake

* gtk/common.py:
(is_cmake_build): Like r165284, we need to assume CMake by default, since the
test-only bot doesn't have any build files.

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (165327 => 165328)


--- trunk/Tools/ChangeLog	2014-03-08 06:36:02 UTC (rev 165327)
+++ trunk/Tools/ChangeLog	2014-03-08 08:08:46 UTC (rev 165328)
@@ -1,3 +1,11 @@
+2014-03-08  Martin Robinson  <mrobin...@igalia.com>
+
+        Unreviewed build fix for GTKbuild after the switch to CMake
+
+        * gtk/common.py:
+        (is_cmake_build): Like r165284, we need to assume CMake by default, since the
+        test-only bot doesn't have any build files.
+
 2014-03-07  Martin Robinson  <mrobin...@igalia.com>
 
         [GTK] built-product-archive does not handle GTK+ CMake build

Modified: trunk/Tools/gtk/common.py (165327 => 165328)


--- trunk/Tools/gtk/common.py	2014-03-08 06:36:02 UTC (rev 165327)
+++ trunk/Tools/gtk/common.py	2014-03-08 08:08:46 UTC (rev 165328)
@@ -44,7 +44,7 @@
 def is_cmake_build():
     global is_cmake
     if is_cmake is None:
-        is_cmake = os.path.exists(build_path('CMakeCache.txt'))
+        is_cmake = not os.path.exists(build_path('config.log'))
     return is_cmake
 
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to