diff --git a/Makefile b/Makefile index ac3bd90..c938698 100644 --- a/Makefile +++ b/Makefile @@ -52,12 +52,9 @@ image: build: $(LISP) --non-interactive \ - --eval '(ql:quickload :deploy)' \ --eval '(ql:quickload "cl+ssl")' \ --load ciel.asd \ - --load build-config.lisp \ --eval '(ql:quickload :swank)' \ - --eval '(push :deploy-console *features*)' \ --eval '(ql:quickload :ciel)' \ --eval '(ql:quickload :ciel/repl)' \ --eval '(asdf:make :ciel/repl)' \ diff --git a/ciel.asd b/ciel.asd index 9f57cda..d529917 100644 --- a/ciel.asd +++ b/ciel.asd @@ -199,10 +199,8 @@ (:static-file "simpleHTTPserver"))) ) - ;; Build a binary with Deploy, ship foreign libraries (and ignore libssl). - :defsystem-depends-on (:deploy) ;; need to (ql:quickload "deploy") before building. - ;; :build-operation "program-op" - :build-operation "deploy-op" + :build-operation "program-op" + :build-operation "program-op" :build-pathname "ciel" :entry-point "ciel::main")