mirror of
https://github.com/ashinn/chibi-scheme.git
synced 2025-06-17 19:36:47 +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
|
||||
(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")))
|
||||
|
|
Loading…
Add table
Reference in a new issue