- 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:
Abdulaziz Ghuloum 2008-12-07 19:03:07 -05:00
parent f7d1d6b6a3
commit 7e5b31e98c
4 changed files with 2 additions and 2 deletions

Binary file not shown.

Binary file not shown.

View File

@ -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)

View File

@ -1 +1 @@
1699
1700