Title: [267556] branches/safari-610-branch/Tools
Revision
267556
Author
[email protected]
Date
2020-09-24 20:19:50 -0700 (Thu, 24 Sep 2020)

Log Message

Cherry-pick r267501. rdar://problem/69454393

    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:

    git-svn-id: https://svn.webkit.org/repository/webkit/trunk@267501 268f45cc-cd09-0410-ab3c-d52691b4dbfc

Modified Paths

Diff

Modified: branches/safari-610-branch/Tools/ChangeLog (267555 => 267556)


--- branches/safari-610-branch/Tools/ChangeLog	2020-09-25 03:00:45 UTC (rev 267555)
+++ branches/safari-610-branch/Tools/ChangeLog	2020-09-25 03:19:50 UTC (rev 267556)
@@ -1,3 +1,30 @@
+2020-09-24  Ryan Haddad  <[email protected]>
+
+        Cherry-pick r267501. rdar://problem/69454393
+
+    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:
+    
+    
+    git-svn-id: https://svn.webkit.org/repository/webkit/trunk@267501 268f45cc-cd09-0410-ab3c-d52691b4dbfc
+
+    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-22  Ryan Haddad  <[email protected]>
 
         Cherry-pick r267278. rdar://problem/69374947

Modified: branches/safari-610-branch/Tools/Scripts/configure-xcode-for-embedded-development (267555 => 267556)


--- branches/safari-610-branch/Tools/Scripts/configure-xcode-for-embedded-development	2020-09-25 03:00:45 UTC (rev 267555)
+++ branches/safari-610-branch/Tools/Scripts/configure-xcode-for-embedded-development	2020-09-25 03:19:50 UTC (rev 267556)
@@ -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: branches/safari-610-branch/Tools/Scripts/webkitpy/__init__.py (267555 => 267556)


--- branches/safari-610-branch/Tools/Scripts/webkitpy/__init__.py	2020-09-25 03:00:45 UTC (rev 267555)
+++ branches/safari-610-branch/Tools/Scripts/webkitpy/__init__.py	2020-09-25 03:19:50 UTC (rev 267556)
@@ -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