aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorSean Whitton <spwhitton@spwhitton.name>2021-02-22 17:30:01 -0700
committerSean Whitton <spwhitton@spwhitton.name>2021-02-22 17:30:01 -0700
commitfcd9a0ed96e6eed58dd9eb6ce15b40efcd71b9b5 (patch)
treed7d0ed71384ae54639c83bf8873a5896ffbe8e94 /src
parentd3f4230b8010e0a1e5d673feee63ea94694dbacc (diff)
downloadconsfigurator-fcd9a0ed96e6eed58dd9eb6ce15b40efcd71b9b5.tar.gz
fix registering the :ASDF data source
Signed-off-by: Sean Whitton <spwhitton@spwhitton.name>
Diffstat (limited to 'src')
-rw-r--r--src/data.lisp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/data.lisp b/src/data.lisp
index ece9242..eab5ff2 100644
--- a/src/data.lisp
+++ b/src/data.lisp
@@ -189,8 +189,8 @@ This function is called by property :APPLY and :UNAPPLY subroutines."
(and (string= (first c) iden1)
(string= (second c) iden2)))
,cache)))))
- (loop with *data-sources* = *data-sources*
- initially (register-data-source :asdf)
+ (loop with *data-sources* = (cons (register-data-source :asdf)
+ *data-sources*)
with sorted-local-cache = (sort-prerequisite-data-cache
(get-local-cached-prerequisite-data))