Title: [221331] trunk/Tools
Revision
221331
Author
[email protected]
Date
2017-08-29 18:27:18 -0700 (Tue, 29 Aug 2017)

Log Message

[Win][JSCOnly] Fix call for updating wincairo-libs in build-jsc
https://bugs.webkit.org/show_bug.cgi?id=176080

Patch by Stephan Szabo <[email protected]> on 2017-08-29
Reviewed by Brent Fulgham.

* Scripts/build-jsc:

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (221330 => 221331)


--- trunk/Tools/ChangeLog	2017-08-30 01:22:33 UTC (rev 221330)
+++ trunk/Tools/ChangeLog	2017-08-30 01:27:18 UTC (rev 221331)
@@ -1,3 +1,12 @@
+2017-08-29  Stephan Szabo  <[email protected]>
+
+        [Win][JSCOnly] Fix call for updating wincairo-libs in build-jsc
+        https://bugs.webkit.org/show_bug.cgi?id=176080
+
+        Reviewed by Brent Fulgham.
+
+        * Scripts/build-jsc:
+
 2017-08-29  Adrian Perez de Castro  <[email protected]>
 
         [WPE] Avoid using autogen for JHBuild modules, trying to fix the EWS

Modified: trunk/Tools/Scripts/build-jsc (221330 => 221331)


--- trunk/Tools/Scripts/build-jsc	2017-08-30 01:22:33 UTC (rev 221330)
+++ trunk/Tools/Scripts/build-jsc	2017-08-30 01:27:18 UTC (rev 221331)
@@ -116,7 +116,7 @@
 }
 
 if (isJSCOnly() && isWindows()) {
-    (system("perl Tools/Scripts/update-webkit-wincairo-libs") == 0) or die;
+    (system("python Tools/Scripts/update-webkit-wincairo-libs.py") == 0) or die;
 }
 
 checkRequiredSystemConfig();
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to