aboutsummaryrefslogtreecommitdiff
path: root/src/data.lisp
diff options
context:
space:
mode:
Diffstat (limited to 'src/data.lisp')
-rw-r--r--src/data.lisp9
1 files changed, 4 insertions, 5 deletions
diff --git a/src/data.lisp b/src/data.lisp
index b6feb34..21fdb65 100644
--- a/src/data.lisp
+++ b/src/data.lisp
@@ -473,10 +473,9 @@ chance of those passwords showing up in the clear in the Lisp debugger."
;;;; Programs for remote Lisp images
-;; 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)
+;; TODO unclear whether the need for sb-cltl2 require is a bug in trivial-macroexpand-all
+(defparameter continue-deploy*-program-implementation-specific
+ "#+sbcl (require \"sb-posix\") #+sbcl (require \"sb-cltl2\")")
(defun continue-deploy*-program (remaining-connections)
"Return a program to complete the work of an enclosing call to DEPLOY*.
@@ -561,7 +560,7 @@ Preprocessing must occur in the root Lisp."))
;; those packages
(values
(format nil "~A~%~{~A~^~%~}"
- +continue-deploy*-program-implementation-specific+
+ continue-deploy*-program-implementation-specific
(mapcar #'prin1-to-string forms))
forms)))
(print-not-readable (c)