From 51416b268ddbdd65bc14e1dd719860689d43602b Mon Sep 17 00:00:00 2001 From: Mark Wooding Date: Thu, 1 Jun 2006 16:31:42 +0100 Subject: [PATCH] make-runlisp: Make sure CLC is set up properly in ECL. --- make-runlisp.lisp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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) -- 2.11.0