⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 267556 in webkit


Ignore:
Timestamp:
Sep 24, 2020, 8:19:50 PM (6 years ago)
Author:
Ryan Haddad
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

Location:
branches/safari-610-branch/Tools
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • branches/safari-610-branch/Tools/ChangeLog

    r267415 r267556  
     12020-09-24  Ryan Haddad  <ryanhaddad@apple.com>
     2
     3        Cherry-pick r267501. rdar://problem/69454393
     4
     5    Force SYSTEM_VERSION_COMPAT=0 in Webkit scripts
     6    https://bugs.webkit.org/show_bug.cgi?id=216895
     7    <rdar://problem/69454393>
     8   
     9    Reviewed by Dewei Zhu.
     10   
     11    * Scripts/configure-xcode-for-embedded-development:
     12    * Scripts/webkitpy/__init__.py:
     13   
     14   
     15    git-svn-id: https://svn.webkit.org/repository/webkit/trunk@267501 268f45cc-cd09-0410-ab3c-d52691b4dbfc
     16
     17    2020-09-23  Jonathan Bedard  <jbedard@apple.com>
     18
     19            Force SYSTEM_VERSION_COMPAT=0 in Webkit scripts
     20            https://bugs.webkit.org/show_bug.cgi?id=216895
     21            <rdar://problem/69454393>
     22
     23            Reviewed by Dewei Zhu.
     24
     25            * Scripts/configure-xcode-for-embedded-development:
     26            * Scripts/webkitpy/__init__.py:
     27
    1282020-09-22  Ryan Haddad  <ryanhaddad@apple.com>
    229
  • branches/safari-610-branch/Tools/Scripts/configure-xcode-for-embedded-development

    r264491 r267556  
    3535
    3636from xml.etree import ElementTree as ET
     37
     38# We always want the real system version
     39os.environ['SYSTEM_VERSION_COMPAT'] = '0'
    3740
    3841MISSING_HEADERS = [
  • branches/safari-610-branch/Tools/Scripts/webkitpy/__init__.py

    r265866 r267556  
    1616import sys
    1717
     18# We always want the real system version
     19os.environ['SYSTEM_VERSION_COMPAT'] = '0'
     20
    1821libraries = os.path.join(os.path.abspath(os.path.dirname(os.path.dirname(__file__))), 'libraries')
    1922sys.path.insert(0, os.path.join(libraries, 'webkitcorepy'))
Note: See TracChangeset for help on using the changeset viewer.