From 7679d07b097669fe8d57b453619635a89cc4afef Mon Sep 17 00:00:00 2001 From: Mark Wooding Date: Tue, 28 Jul 2020 01:16:17 +0100 Subject: [PATCH] src/asdf-hack.lisp.in: Place our directory /before/ the defaults. 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 | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/asdf-hack.lisp.in b/src/asdf-hack.lisp.in index a09db8b..6358dab 100644 --- a/src/asdf-hack.lisp.in +++ b/src/asdf-hack.lisp.in @@ -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)) -- 2.11.0