Title: [198616] trunk
Revision
198616
Author
[email protected]
Date
2016-03-23 22:13:35 -0700 (Wed, 23 Mar 2016)

Log Message

Fixed ninja build path.
https://bugs.webkit.org/show_bug.cgi?id=155796

Patch by Bill Ming <[email protected]> on 2016-03-23
Reviewed by Alex Christensen.

* Tools/Scripts/build-webkit:

Modified Paths

Diff

Modified: trunk/ChangeLog (198615 => 198616)


--- trunk/ChangeLog	2016-03-24 03:31:54 UTC (rev 198615)
+++ trunk/ChangeLog	2016-03-24 05:13:35 UTC (rev 198616)
@@ -1,3 +1,12 @@
+2016-03-23  Bill Ming  <[email protected]>
+
+        Fixed ninja build path.
+        https://bugs.webkit.org/show_bug.cgi?id=155796
+
+        Reviewed by Alex Christensen.
+
+        * Tools/Scripts/build-webkit:
+
 2016-03-21  Eric Carlson  <[email protected]>
 
         Add a WebRTC specific compile flag

Modified: trunk/Tools/Scripts/build-webkit (198615 => 198616)


--- trunk/Tools/Scripts/build-webkit	2016-03-24 03:31:54 UTC (rev 198615)
+++ trunk/Tools/Scripts/build-webkit	2016-03-24 05:13:35 UTC (rev 198616)
@@ -249,7 +249,7 @@
     }
     chdirWebKit();
     if (canUseNinja()) {
-        chdir File::Spec->catdir("WebKitBuild", configuration());
+        chdir File::Spec->catdir($baseProductDir, configuration());
         $result = system("ninja");
     } else {
         $result = buildVisualStudioProject(File::Spec->catfile("WebKitBuild", configuration(), "WebKit.sln"), $clean);
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to