Fix propably misplaced parenthesis

This commit is contained in:
retropikzel 2025-06-16 06:49:42 +03:00
parent 357361eaac
commit f4dfc6e92c

View file

@ -1361,7 +1361,8 @@
(list (list
(if (file-exists? dir) ; repository-path should always exist (if (file-exists? dir) ; repository-path should always exist
dir 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)))))) (get-chicken-binary-version cfg))))))
((cyclone) ((cyclone)
(let ((dir (let ((lib-path (get-environment-variable "CYCLONE_LIBRARY_PATH"))) (let ((dir (let ((lib-path (get-environment-variable "CYCLONE_LIBRARY_PATH")))