diff options
author | Teddy Wing | 2022-05-08 14:39:33 +0200 |
---|---|---|
committer | Teddy Wing | 2022-05-08 14:39:33 +0200 |
commit | 6a4dcbbaaf4f75fceb402ea073eb33d32445bbcb (patch) | |
tree | f683dbd2d45e92f06eeee30f4e51f65e195a3482 | |
parent | 9c096bebdb5424117349bcf829df008657d73bbc (diff) | |
download | wajir-6a4dcbbaaf4f75fceb402ea073eb33d32445bbcb.tar.bz2 |
wajir.asd: Remove `in-package :asdf-user` and use namespace
It seems this is the same as before, but it makes it clearer what
symbols come from ASDF.
I had changed the file to use (in-package :asdf-user)` before when I was
trying to add the "lib/" directory to the source registry to try and see
if that made a difference for that problem.
-rw-r--r-- | wajir.asd | 10 |
1 files changed, 4 insertions, 6 deletions
@@ -1,8 +1,6 @@ -(in-package :asdf-user) - ;; Include the repo "lib/" directory in the system search path to make ;; available systems tracked as submodules. -(initialize-source-registry +(asdf:initialize-source-registry `(:source-registry (:tree ,(make-pathname :directory (append @@ -10,7 +8,7 @@ '("lib")))) :inherit-configuration)) -(defsystem wajir +(asdf:defsystem wajir :version "0.0.1" :depends-on (:cl-base64 :cl-smtp @@ -28,5 +26,5 @@ :entry-point "wajir") #+sb-core-compression -(defmethod perform ((o image-op) (c system)) - (uiop:dump-image (output-file o c) :executable t :compression t)) +(defmethod asdf:perform ((o asdf:image-op) (c asdf:system)) + (uiop:dump-image (asdf:output-file o c) :executable t :compression t)) |