From 52720a5e6f3e1d88a93af6d660e9c8b63a845477 Mon Sep 17 00:00:00 2001 From: Dimitri Fontaine Date: Tue, 3 Oct 2017 13:47:48 +0200 Subject: [PATCH] Prefer QL overrides to ASDF setup. The ql:*local-project-directories* is a much better facility for us to load pgloader from the local PWD rather than from the QL distribution. It looks like the previous method worked by accident, for once, and also downloaded pgloader from QL, unnecessarily (we have the sources locally). --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 183808e..6dfb7bf 100644 --- a/Makefile +++ b/Makefile @@ -101,9 +101,9 @@ clones: $(QLDIR)/local-projects/cl-ixf \ $(QLDIR)/local-projects/qmynd ; $(LIBS): $(QLDIR)/setup.lisp clones - $(CL) $(CL_OPTS) --load $(QLDIR)/setup.lisp \ - --eval '(push "$(PWD)/" asdf:*central-registry*)' \ - --eval '(ql:quickload "pgloader")' \ + $(CL) $(CL_OPTS) --load $(QLDIR)/setup.lisp \ + --eval '(push "$(PWD)/" ql:*local-project-directories*)' \ + --eval '(ql:quickload "pgloader")' \ --eval '(quit)' touch $@