From: Taylor R Campbell Date: Sat, 5 Oct 2013 21:42:03 +0000 (+0000) Subject: Load crsend.scm into the right environment. X-Git-Tag: release-9.2.0~100^2~5 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=79bbe372ee475bbb9313061996721d56db3f8db4;p=mit-scheme.git Load crsend.scm into the right environment. --- diff --git a/src/Makefile.in b/src/Makefile.in index c4ab9c9ae..c7bdc4a32 100644 --- a/src/Makefile.in +++ b/src/Makefile.in @@ -484,9 +484,9 @@ cross-barrier: syntax-runtime .PHONY: cross-end cross-end: cross-barrier - (echo '(begin' && \ - echo ' (load "../compiler/base/crsend")' && \ - echo ' (finish-cross-compilation:directory ".."))') \ + (echo '(let ((env (->environment (quote (RUNTIME)))))' && \ + echo ' (load "../compiler/base/crsend" env)' && \ + echo ' ((access FINISH-CROSS-COMPILATION:DIRECTORY env) ".."))') \ | (cd runtime && ../microcode/scheme --batch-mode --library ../lib \ --fasl make.bin)