Title: [267501] trunk/Tools
Revision
267501
Author
[email protected]
Date
2020-09-23 14:54:31 -0700 (Wed, 23 Sep 2020)

Log Message

Force SYSTEM_VERSION_COMPAT=0 in Webkit scripts
https://bugs.webkit.org/show_bug.cgi?id=216895
<rdar://problem/69454393>

Reviewed by Dewei Zhu.

* Scripts/configure-xcode-for-embedded-development:
* Scripts/webkitpy/__init__.py:

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (267500 => 267501)


--- trunk/Tools/ChangeLog	2020-09-23 21:26:09 UTC (rev 267500)
+++ trunk/Tools/ChangeLog	2020-09-23 21:54:31 UTC (rev 267501)
@@ -1,3 +1,14 @@
+2020-09-23  Jonathan Bedard  <[email protected]>
+
+        Force SYSTEM_VERSION_COMPAT=0 in Webkit scripts
+        https://bugs.webkit.org/show_bug.cgi?id=216895
+        <rdar://problem/69454393>
+
+        Reviewed by Dewei Zhu.
+
+        * Scripts/configure-xcode-for-embedded-development:
+        * Scripts/webkitpy/__init__.py:
+
 2020-09-23  Fujii Hironori  <[email protected]>
 
         Remove ENABLE_SVG_FONTS macro

Modified: trunk/Tools/Scripts/configure-xcode-for-embedded-development (267500 => 267501)


--- trunk/Tools/Scripts/configure-xcode-for-embedded-development	2020-09-23 21:26:09 UTC (rev 267500)
+++ trunk/Tools/Scripts/configure-xcode-for-embedded-development	2020-09-23 21:54:31 UTC (rev 267501)
@@ -35,6 +35,9 @@
 
 from xml.etree import ElementTree as ET
 
+# We always want the real system version
+os.environ['SYSTEM_VERSION_COMPAT'] = '0'
+
 MISSING_HEADERS = [
     "usr/include/libxslt",
     "usr/include/mach/mach_types.defs",

Modified: trunk/Tools/Scripts/webkitpy/__init__.py (267500 => 267501)


--- trunk/Tools/Scripts/webkitpy/__init__.py	2020-09-23 21:26:09 UTC (rev 267500)
+++ trunk/Tools/Scripts/webkitpy/__init__.py	2020-09-23 21:54:31 UTC (rev 267501)
@@ -15,6 +15,9 @@
 import os
 import sys
 
+# We always want the real system version
+os.environ['SYSTEM_VERSION_COMPAT'] = '0'
+
 libraries = os.path.join(os.path.abspath(os.path.dirname(os.path.dirname(__file__))), 'libraries')
 sys.path.insert(0, os.path.join(libraries, 'webkitcorepy'))
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to