From a62c504a4027f0cea99b3a4ff5346fef4cb91c2f Mon Sep 17 00:00:00 2001 From: Joris Vink Date: Wed, 9 Sep 2020 22:35:19 +0200 Subject: [PATCH] Set KORE_SOURCE for tools-build target. --- Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 0a91702..caf7f0a 100644 --- a/Makefile +++ b/Makefile @@ -229,7 +229,10 @@ uninstall: tools-build: $(KODEV) for t in $(TOOLS); do \ cd tools/$$t; \ - env KODEV_OUTPUT=$(KOREPATH) KORE_BUILD_FLAVOR=$(OSNAME) \ + env \ + KODEV_OUTPUT=$(KOREPATH) \ + KORE_SOURCE=$(KOREPATH) \ + KORE_BUILD_FLAVOR=$(OSNAME) \ $(KOREPATH)/$(KODEV) build; \ cd $(KOREPATH); \ done