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

Changeset 283396 in webkit


Ignore:
Timestamp:
Oct 1, 2021, 1:35:17 PM (5 years ago)
Author:
Brent Fulgham
Message:

Remove special treatment for /private/var/db/dyld on older macOS
https://bugs.webkit.org/show_bug.cgi?id=231092
<rdar://problem/66580290>

Reviewed by Per Arne Vollan.

The dyld shared cache moved to /System/Library/dyld in Big Sur. We should remove access to the
old location from Big Sur (and beyond) since it isn't needed anymore.

  • GPUProcess/mac/com.apple.WebKit.GPUProcess.sb.in:
  • NetworkProcess/mac/com.apple.WebKit.NetworkProcess.sb.in:
  • WebAuthnProcess/mac/com.apple.WebKit.WebAuthnProcess.sb.in:
  • WebProcess/com.apple.WebProcess.sb.in:
Location:
trunk/Source/WebKit
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/ChangeLog

    r283394 r283396  
     12021-10-01  Brent Fulgham  <bfulgham@apple.com>
     2
     3        Remove special treatment for /private/var/db/dyld on older macOS
     4        https://bugs.webkit.org/show_bug.cgi?id=231092
     5        <rdar://problem/66580290>
     6
     7        Reviewed by Per Arne Vollan.
     8
     9        The dyld shared cache moved to /System/Library/dyld in Big Sur. We should remove access to the
     10        old location from Big Sur (and beyond) since it isn't needed anymore.
     11
     12        * GPUProcess/mac/com.apple.WebKit.GPUProcess.sb.in:
     13        * NetworkProcess/mac/com.apple.WebKit.NetworkProcess.sb.in:
     14        * WebAuthnProcess/mac/com.apple.WebKit.WebAuthnProcess.sb.in:
     15        * WebProcess/com.apple.WebProcess.sb.in:
     16
    1172021-10-01  Kate Cheney  <katherine_cheney@apple.com>
    218
  • trunk/Source/WebKit/GPUProcess/mac/com.apple.WebKit.GPUProcess.sb.in

    r283378 r283396  
    5252    (subpath "/Library/Apple/System")
    5353    (subpath "/Library/Preferences/Logging")      ; Logging Rethink
     54#if __MAC_OS_X_VERSION_MIN_REQUIRED < 110000
    5455    (subpath "/private/var/db/dyld")
     56#endif
    5557    (subpath "/private/var/db/timezone")
    5658    (subpath "/usr/lib")
  • trunk/Source/WebKit/NetworkProcess/mac/com.apple.WebKit.NetworkProcess.sb.in

    r283327 r283396  
    8181       (subpath "/Library/Filesystems/NetFSPlugins")
    8282       (subpath "/Library/Preferences/Logging")      ; Logging Rethink
     83#if __MAC_OS_X_VERSION_MIN_REQUIRED < 110000
    8384       (subpath "/private/var/db/dyld")
     85#endif
    8486       (subpath "/private/var/db/timezone")
    8587       (subpath "/usr/lib")
  • trunk/Source/WebKit/WebAuthnProcess/mac/com.apple.WebKit.WebAuthnProcess.sb.in

    r283378 r283396  
    4747    (subpath "/Library/Preferences/Logging")      ; Logging Rethink
    4848    (subpath "/System")
     49#if __MAC_OS_X_VERSION_MIN_REQUIRED < 110000
    4950    (subpath "/private/var/db/dyld")
     51#endif
    5052    (subpath "/private/var/db/timezone")
    5153    (subpath "/usr/lib")
  • trunk/Source/WebKit/WebProcess/com.apple.WebProcess.sb.in

    r283378 r283396  
    5555    (subpath "/Library/Preferences/Logging")      ; Logging Rethink
    5656    (subpath "/System")
     57#if __MAC_OS_X_VERSION_MIN_REQUIRED < 110000
    5758    (subpath "/private/var/db/dyld")
     59#endif
    5860    (subpath "/private/var/db/timezone")
    5961    (subpath "/usr/lib")
Note: See TracChangeset for help on using the changeset viewer.