From 7fc399c5198d5f38d0d351c1562476fa8754ba69 Mon Sep 17 00:00:00 2001 From: Miguel Marco Date: Thu, 8 Apr 2021 12:37:58 +0200 Subject: [PATCH] Change compile instruction to allow unbundled asdf --- compile.lisp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compile.lisp b/compile.lisp index 94b6562..1e59196 100644 --- a/compile.lisp +++ b/compile.lisp @@ -8,5 +8,5 @@ (asdf:disable-output-translations) (push #P"./" asdf:*central-registry*) (require :kenzo) -(asdf:make-build :kenzo :type :fasl :monolithic t :move-here #P".") +(asdf:operate 'asdf:monolithic-compile-bundle-op :kenzo) (quit)