Merge pull request #1027 from Retropikzel/chicken-fix

Fix propably misplaced parenthesis on get-install-dirs with chicken
This commit is contained in:
Alex Shinn 2025-06-16 16:31:32 +09:00 committed by GitHub
commit 1be46461c8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1361,7 +1361,8 @@
(list
(if (file-exists? dir) ; repository-path should always exist
dir
(make-path (or (conf-get cfg 'install-prefix)) "lib" impl
(make-path (or (conf-get cfg 'install-prefix) "lib")
impl
(get-chicken-binary-version cfg))))))
((cyclone)
(let ((dir (let ((lib-path (get-environment-variable "CYCLONE_LIBRARY_PATH")))