aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTeddy Wing2022-05-08 14:39:33 +0200
committerTeddy Wing2022-05-08 14:39:33 +0200
commit6a4dcbbaaf4f75fceb402ea073eb33d32445bbcb (patch)
treef683dbd2d45e92f06eeee30f4e51f65e195a3482
parent9c096bebdb5424117349bcf829df008657d73bbc (diff)
downloadwajir-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.asd10
1 files changed, 4 insertions, 6 deletions
diff --git a/wajir.asd b/wajir.asd
index 5d5c32d..1f95cf6 100644
--- a/wajir.asd
+++ b/wajir.asd
@@ -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))