aboutsummaryrefslogtreecommitdiff
path: root/src/data.lisp
diff options
context:
space:
mode:
authorSean Whitton <spwhitton@spwhitton.name>2021-03-15 17:10:49 -0700
committerSean Whitton <spwhitton@spwhitton.name>2021-03-15 17:18:39 -0700
commit306cd4a2b20d5733c20fd869e13c0422caed3026 (patch)
tree80ba9661e4fc337d34330a28f6e1374134102ff1 /src/data.lisp
parent61805a1a499ffe80a36cf26c7f68589dfe5aaad9 (diff)
downloadconsfigurator-306cd4a2b20d5733c20fd869e13c0422caed3026.tar.gz
send (REQUIRE "sb-cltl2") to the remote Lisp
Signed-off-by: Sean Whitton <spwhitton@spwhitton.name>
Diffstat (limited to 'src/data.lisp')
-rw-r--r--src/data.lisp9
1 files changed, 8 insertions, 1 deletions
diff --git a/src/data.lisp b/src/data.lisp
index 0ea673b..2869b43 100644
--- a/src/data.lisp
+++ b/src/data.lisp
@@ -345,6 +345,11 @@ of the current connection, where each entry is of the form
"-type" "f" "-printf" "%P\\n")
(and (zerop exit) (lines out)))))
+;; TODO unclear whether the need for this is a bug in trivial-macroexpand-all
+(define-constant +continue-deploy*-program-implementation-specific+
+ "#+sbcl (require \"sb-cltl2\")"
+ :test #'equal)
+
(defun continue-deploy*-program (remaining-connections)
"Return a program to complete the work of an enclosing call to DEPLOY*.
@@ -400,7 +405,9 @@ Preprocessing must occur in the root Lisp."))
;; need line breaks in between so that packages exist before we
;; try to have remote Lisp read sexps containing symbols from
;; those packages
- (format nil "~{~A~^~%~}" (mapcar #'prin1-to-string forms)))
+ (format nil "~A~%~{~A~^~%~}"
+ +continue-deploy*-program-implementation-specific+
+ (mapcar #'prin1-to-string forms)))
(print-not-readable (c)
(error "The Lisp printer could not serialise ~A for
transmission to the remote Lisp.