Title: [263583] trunk/Tools
- Revision
- 263583
- Author
- [email protected]
- Date
- 2020-06-26 14:11:52 -0700 (Fri, 26 Jun 2020)
Log Message
[Big Sur] Handle baseline search path (Follow-up fix)
https://bugs.webkit.org/show_bug.cgi?id=213639
<rdar://problem/64789480>
Unreviewed follow-up fix.
* Scripts/webkitpy/port/mac.py:
(MacPort.default_baseline_search_path): Copy reference version by value, not by reference.
Modified Paths
Diff
Modified: trunk/Tools/ChangeLog (263582 => 263583)
--- trunk/Tools/ChangeLog 2020-06-26 21:11:26 UTC (rev 263582)
+++ trunk/Tools/ChangeLog 2020-06-26 21:11:52 UTC (rev 263583)
@@ -1,3 +1,14 @@
+2020-06-26 Jonathan Bedard <[email protected]>
+
+ [Big Sur] Handle baseline search path (Follow-up fix)
+ https://bugs.webkit.org/show_bug.cgi?id=213639
+ <rdar://problem/64789480>
+
+ Unreviewed follow-up fix.
+
+ * Scripts/webkitpy/port/mac.py:
+ (MacPort.default_baseline_search_path): Copy reference version by value, not by reference.
+
2020-06-26 Geoffrey Garen <[email protected]>
Initializing the main thread should initialize the main run loop
Modified: trunk/Tools/Scripts/webkitpy/port/mac.py (263582 => 263583)
--- trunk/Tools/Scripts/webkitpy/port/mac.py 2020-06-26 21:11:26 UTC (rev 263582)
+++ trunk/Tools/Scripts/webkitpy/port/mac.py 2020-06-26 21:11:52 UTC (rev 263583)
@@ -88,7 +88,7 @@
if temp_version.minor > 0:
temp_version.minor -= 1
else:
- temp_version = self.LAST_MACOSX
+ temp_version = Version(self.LAST_MACOSX.major, self.LAST_MACOSX.minor)
wk_string = 'wk1'
if self.get_option('webkit_test_runner'):
wk_string = 'wk2'
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes