/usr/share/racket/collects/compiler/exe-dylib-path.rkt is in racket-common 6.3-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | #lang racket/base
(require racket/contract/base
"private/macfw.rkt")
(provide
(contract-out
[find-matching-library-path (path-string? string? . -> . (or/c #f string?))]
[update-matching-library-path (path-string? string? string? . -> . void?)]))
(define (find-matching-library-path exe str)
(get-current-framework-path exe str))
(define (update-matching-library-path exe str new-str)
(update-framework-path new-str #:as-given? #t
exe
#f
#:matching (list str)))
|