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

Changeset 267501 in webkit


Ignore:
Timestamp:
Sep 23, 2020, 2:54:31 PM (6 years ago)
Author:
Jonathan Bedard
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:
Location:
trunk/Tools
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r267497 r267501  
     12020-09-23  Jonathan Bedard  <jbedard@apple.com>
     2
     3        Force SYSTEM_VERSION_COMPAT=0 in Webkit scripts
     4        https://bugs.webkit.org/show_bug.cgi?id=216895
     5        <rdar://problem/69454393>
     6
     7        Reviewed by Dewei Zhu.
     8
     9        * Scripts/configure-xcode-for-embedded-development:
     10        * Scripts/webkitpy/__init__.py:
     11
    1122020-09-23  Fujii Hironori  <Hironori.Fujii@sony.com>
    213
  • trunk/Tools/Scripts/configure-xcode-for-embedded-development

    r264491 r267501  
    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 = [
  • trunk/Tools/Scripts/webkitpy/__init__.py

    r267410 r267501  
    1515import os
    1616import sys
     17
     18# We always want the real system version
     19os.environ['SYSTEM_VERSION_COMPAT'] = '0'
    1720
    1821libraries = os.path.join(os.path.abspath(os.path.dirname(os.path.dirname(__file__))), 'libraries')
Note: See TracChangeset for help on using the changeset viewer.