summaryrefslogtreecommitdiff
path: root/make-core-image.sh
diff options
context:
space:
mode:
authorMatthias Benkard <code@mail.matthias.benkard.de>2009-10-30 20:45:40 +0100
committerMatthias Benkard <code@mail.matthias.benkard.de>2009-10-30 20:45:40 +0100
commit15937a1a4f1cf40bc55aa34eb71c67b88466ff57 (patch)
tree9988cdc74786f3e15a3ab075e15ab75a93a0646e /make-core-image.sh
parent5cd124b097a4d74528e0c569b4f9ad5f218f7621 (diff)
Update build scripts.
Ignore-this: d92417cd0e6528a1be2808f7060d91a6 darcs-hash:1d70dd932f38b6b8a9a590c1717c7f4d433c5361
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