- bootstrapping fails if IKARUS_LIBRARY_PATH is not set due to
change in behavior of getenv (returning #f if unset). Fixed.
This commit is contained in:
parent
f7d1d6b6a3
commit
7e5b31e98c
Binary file not shown.
Binary file not shown.
|
@ -58,7 +58,7 @@
|
|||
(library-path
|
||||
(cons "."
|
||||
(append
|
||||
(split (getenv "IKARUS_LIBRARY_PATH"))
|
||||
(split (or (getenv "IKARUS_LIBRARY_PATH") ""))
|
||||
(list ikarus-lib-dir))))
|
||||
(let ([prefix
|
||||
(lambda (ext ls)
|
||||
|
|
|
@ -1 +1 @@
|
|||
1699
|
||||
1700
|
||||
|
|
Loading…
Reference in New Issue