- 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
|
(library-path
|
||||||
(cons "."
|
(cons "."
|
||||||
(append
|
(append
|
||||||
(split (getenv "IKARUS_LIBRARY_PATH"))
|
(split (or (getenv "IKARUS_LIBRARY_PATH") ""))
|
||||||
(list ikarus-lib-dir))))
|
(list ikarus-lib-dir))))
|
||||||
(let ([prefix
|
(let ([prefix
|
||||||
(lambda (ext ls)
|
(lambda (ext ls)
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
1699
|
1700
|
||||||
|
|
Loading…
Reference in New Issue