summaryrefslogtreecommitdiff
path: root/make-core-image.sh
diff options
context:
space:
mode:
Diffstat (limited to 'make-core-image.sh')
-rwxr-xr-xmake-core-image.sh7
1 files changed, 5 insertions, 2 deletions
diff --git a/make-core-image.sh b/make-core-image.sh
index 9f36e16..4b21207 100755
--- a/make-core-image.sh
+++ b/make-core-image.sh
@@ -2,8 +2,11 @@
clisp -q -q -on-error exit <<EOF
(dolist (system '(:cl-ppcre :cl-fad :iterate :cl-markdown :parenscript
:yaclml :lisp-cgi-utils :alexandria :xml-emitter
- :split-sequence :clsql :clsql-sqlite3 :drakma :cybertyggr-time))
- (asdf:oos 'asdf:load-op system))
+ :split-sequence :clsql :clsql-sqlite3 :drakma :cybertyggr-time
+ :s-xml-rpc))
+ (handler-bind
+ ((error (lambda (&rest args) (invoke-restart (find-restart 'continue)))))
+ (asdf:oos 'asdf:load-op system)))
(saveinitmem "lispinit.mem")
(quit)
EOF