From 1cd287f03b3759c3e6084faf89326db6f4245e5f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dominik=20Pant=C5=AF=C4=8Dek?= Date: Mon, 25 Sep 2023 13:35:56 +0200 Subject: [PATCH] Fix repository paths. --- src/Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/Makefile b/src/Makefile index f4009d2..ee4f928 100644 --- a/src/Makefile +++ b/src/Makefile @@ -29,7 +29,10 @@ default: imports .PHONY: static static: ../hackerbase -CSC=CHICKEN_REPOSITORY_PATH=../eggs csc +# Uses local repository first, then system. Be sure to run +# install-eggs.sh in the parent directory first! +SCRP=$(shell chicken-install -repository) +CSC=CHICKEN_REPOSITORY_PATH=../eggs:$(SCRP) csc HACKERBASE-DEPS=hackerbase.scm cal-month.import.scm \ command-line.import.scm mbase.import.scm brmember.import.scm \