Title: [161340] trunk/Tools
Revision
161340
Author
[email protected]
Date
2014-01-06 04:44:20 -0800 (Mon, 06 Jan 2014)

Log Message

Unreviewed. Unbreaking JSC tests after r161328.

* Scripts/webkitdirs.pm:
(cmakeBasedPortName): Only recognize the GTK port as CMake-based if actually building
through the CMake build system (i.e. passing --gtkcmake to build-webkit).

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (161339 => 161340)


--- trunk/Tools/ChangeLog	2014-01-06 11:22:15 UTC (rev 161339)
+++ trunk/Tools/ChangeLog	2014-01-06 12:44:20 UTC (rev 161340)
@@ -1,3 +1,11 @@
+2014-01-06  Zan Dobersek  <[email protected]>
+
+        Unreviewed. Unbreaking JSC tests after r161328.
+
+        * Scripts/webkitdirs.pm:
+        (cmakeBasedPortName): Only recognize the GTK port as CMake-based if actually building
+        through the CMake build system (i.e. passing --gtkcmake to build-webkit).
+
 2014-01-05  Martin Robinson  <[email protected]>
 
         [GTK][CMake] Add support for building the GTK+ port with cmake to build-webkit

Modified: trunk/Tools/Scripts/webkitdirs.pm (161339 => 161340)


--- trunk/Tools/Scripts/webkitdirs.pm	2014-01-06 11:22:15 UTC (rev 161339)
+++ trunk/Tools/Scripts/webkitdirs.pm	2014-01-06 12:44:20 UTC (rev 161340)
@@ -2121,7 +2121,7 @@
     return "Efl" if isEfl();
     return "WinCE" if isWinCE();
     return "Nix" if isNix();
-    return "GTK" if isGtk();
+    return "GTK" if isGtkCMake();
     return "";
 }
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to