Changeset 267556 in webkit
- Timestamp:
- Sep 24, 2020, 8:19:50 PM (6 years ago)
- Location:
- branches/safari-610-branch/Tools
- Files:
-
- 3 edited
-
ChangeLog (modified) (1 diff)
-
Scripts/configure-xcode-for-embedded-development (modified) (1 diff)
-
Scripts/webkitpy/__init__.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/safari-610-branch/Tools/ChangeLog
r267415 r267556 1 2020-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 1 28 2020-09-22 Ryan Haddad <ryanhaddad@apple.com> 2 29 -
branches/safari-610-branch/Tools/Scripts/configure-xcode-for-embedded-development
r264491 r267556 35 35 36 36 from xml.etree import ElementTree as ET 37 38 # We always want the real system version 39 os.environ['SYSTEM_VERSION_COMPAT'] = '0' 37 40 38 41 MISSING_HEADERS = [ -
branches/safari-610-branch/Tools/Scripts/webkitpy/__init__.py
r265866 r267556 16 16 import sys 17 17 18 # We always want the real system version 19 os.environ['SYSTEM_VERSION_COMPAT'] = '0' 20 18 21 libraries = os.path.join(os.path.abspath(os.path.dirname(os.path.dirname(__file__))), 'libraries') 19 22 sys.path.insert(0, os.path.join(libraries, 'webkitcorepy'))
Note:
See TracChangeset
for help on using the changeset viewer.