From: Mark Wooding Date: Thu, 1 Jun 2006 15:31:42 +0000 (+0100) Subject: make-runlisp: Make sure CLC is set up properly in ECL. X-Git-Url: https://git.distorted.org.uk/~mdw/runlisp/commitdiff_plain/51416b268ddbdd65bc14e1dd719860689d43602b make-runlisp: Make sure CLC is set up properly in ECL. --- diff --git a/make-runlisp.lisp b/make-runlisp.lisp index ae90abf..6f03b25 100644 --- a/make-runlisp.lisp +++ b/make-runlisp.lisp @@ -59,7 +59,10 @@ ("asdf" "asdf") (#1# "post-sysdef-install")))) :init-name "init_runlisp_boot" - :epilogue-code '(ext:quit (if (runlisp:run) 0 127)))) + :epilogue-code + '(progn + (clc:init-common-lisp-controller-v5 "ecl") + (ext:quit (if (runlisp:run) 0 127))))) ;;; If we're not dead, die. (ext:quit 0)