fix collection-file-path
& related for binary package installation
Binary package installation failed in the case of collection splicing, because module-name resolution via `collection-file-path` did not check for compiled files along hte search path of registered collection directories. original commit: 43d81b06daab9d74493311d02f95eb1c64517f5e
This commit is contained in:
parent
26b2b6c4d7
commit
91eb4c90ac
|
@ -21,7 +21,7 @@
|
|||
|
||||
(define new:collection-path
|
||||
(let ([collection-path (lambda (collection . collections)
|
||||
(apply collection-path
|
||||
(collection-path
|
||||
(lambda (s)
|
||||
(raise
|
||||
(exn:fail:filesystem
|
||||
|
@ -32,12 +32,13 @@
|
|||
|
||||
(define new:collection-file-path
|
||||
(let ([collection-file-path (lambda (file-name collection . collections)
|
||||
(apply collection-file-path
|
||||
(collection-file-path
|
||||
(lambda (s)
|
||||
(raise
|
||||
(exn:fail:filesystem
|
||||
(string-append "collection-file-path: " s)
|
||||
(current-continuation-marks))))
|
||||
#f
|
||||
file-name collection collections))])
|
||||
collection-file-path))
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user