src/asdf-hack.lisp.in: Place our directory /before/ the defaults.
authorMark Wooding <mdw@distorted.org.uk>
Tue, 28 Jul 2020 00:16:17 +0000 (01:16 +0100)
committerMark Wooding <mdw@distorted.org.uk>
Fri, 4 Jun 2021 18:58:58 +0000 (19:58 +0100)
Otherwise, if there's a system-provided copy of Sod, then ASDF finds
that by preference, which is certainly not what I want.

src/asdf-hack.lisp.in

index a09db8b..6358dab 100644 (file)
@@ -2,4 +2,5 @@
 
 (declaim (optimize debug))
 (asdf:initialize-source-registry
- `(:source-registry :inherit-configuration (:directory ,*load-pathname*)))
+ `(:source-registry (:directory ,*load-pathname*)
+                   :inherit-configuration))