Title: [286353] trunk/Source/WebKit
Revision
286353
Author
commit-qu...@webkit.org
Date
2021-11-30 23:43:30 -0800 (Tue, 30 Nov 2021)

Log Message

replace-webkit-additions-includes should assume unknown or empty deployment targets are supported
https://bugs.webkit.org/show_bug.cgi?id=233650

Patch by Antoine Quint <grao...@apple.com> on 2021-11-30
Reviewed by Tim Horton.

* mac/replace-webkit-additions-includes.py:
(is_supported_os):

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (286352 => 286353)


--- trunk/Source/WebKit/ChangeLog	2021-12-01 07:18:46 UTC (rev 286352)
+++ trunk/Source/WebKit/ChangeLog	2021-12-01 07:43:30 UTC (rev 286353)
@@ -1,3 +1,13 @@
+2021-11-30  Antoine Quint  <grao...@apple.com>
+
+        replace-webkit-additions-includes should assume unknown or empty deployment targets are supported
+        https://bugs.webkit.org/show_bug.cgi?id=233650
+
+        Reviewed by Tim Horton.
+
+        * mac/replace-webkit-additions-includes.py:
+        (is_supported_os):
+
 2021-11-30  Simon Fraser  <simon.fra...@apple.com>
 
         Pass the timestamp for scrolling thread animations through all the serviceScrollAnimation() calls

Modified: trunk/Source/WebKit/mac/replace-webkit-additions-includes.py (286352 => 286353)


--- trunk/Source/WebKit/mac/replace-webkit-additions-includes.py	2021-12-01 07:18:46 UTC (rev 286352)
+++ trunk/Source/WebKit/mac/replace-webkit-additions-includes.py	2021-12-01 07:43:30 UTC (rev 286353)
@@ -59,7 +59,7 @@
     if os_version_string is not None:
         os_version = float('.'.join(os_version_string.split('.')[:2]))
         return os_version >= 16.0
-    raise RuntimeError('Unrecognized deployment target')
+    return True
 
 
 def main(argv=None):
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to