mirror of
https://github.com/ashinn/chibi-scheme.git
synced 2025-06-18 03:46:46 +02:00
Merge pull request #1027 from Retropikzel/chicken-fix
Fix propably misplaced parenthesis on get-install-dirs with chicken
This commit is contained in:
commit
1be46461c8
1 changed files with 2 additions and 1 deletions
|
@ -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")))
|
||||||
|
|
Loading…
Add table
Reference in a new issue