From ecbbb61b1f58b02e61b13b8069b2e3c402f48a7a Mon Sep 17 00:00:00 2001 From: Stuart Dilts Date: Sat, 19 Oct 2024 13:43:19 -0600 Subject: [PATCH] Include current directoy in asdf source registry My dev setup has the project's entire parent directory included in the source registry, which not everyone has. Add the directory here to see if it fixes a build issue. --- build-mahogany.lisp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-mahogany.lisp b/build-mahogany.lisp index ed6f1ce..dbb0b72 100644 --- a/build-mahogany.lisp +++ b/build-mahogany.lisp @@ -6,7 +6,7 @@ ;; to be used instead of anything that asdf can find in our environment (asdf:initialize-source-registry `(:source-registry - (:directory ,(merge-pathnames (uiop/os:getcwd) #P"src")) + (:directory ,(uiop/os:getcwd)) (:tree ,(merge-pathnames (uiop/os:getcwd) #P"dependencies")) ;; Use whatever the user has configured in their environment to find the rest. :inherit-configuration))