From 78fcdaa7cf796f1a00fba071f52877f9549b453c Mon Sep 17 00:00:00 2001 From: cage Date: Sun, 20 Mar 2022 15:44:40 +0100 Subject: [PATCH] - ensured exiting from REPL when building the executable using ECL. --- Makefile.am | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile.am b/Makefile.am index 3e52ae5..48bd4b5 100644 --- a/Makefile.am +++ b/Makefile.am @@ -66,7 +66,8 @@ $(PACKAGE): $(CONF_PATH_FILE) *.asd src/* $(LISP_COMPILER) \ --eval "(asdf:load-system '$(PACKAGE))" \ --eval "(in-package main)" \ - --eval "(asdf:make-build :tinmop :type :program :move-here #P\"./\" :epilogue-code '(main::main))"; \ + --eval "(asdf:make-build :tinmop :type :program :move-here #P\"./\" :epilogue-code '(main::main))" \ + --eval "(si:exit)"; \ fi $(CONF_PATH_FILE): grep "^;" $(CONF_PATH_FILE_IN) > $(CONF_PATH_FILE)