kore

Kore is a web application platform for writing scalable, concurrent web based processes in C or Python.
Commits | Files | Refs | README | LICENSE | git clone https://git.kore.io/kore.git

commit a62c504a4027f0cea99b3a4ff5346fef4cb91c2f
parent e87ba0f2d8009e8c3e210a70aef6c379fc0ebe92
Author: Joris Vink <joris@coders.se>
Date:   Wed,  9 Sep 2020 22:35:19 +0200

Set KORE_SOURCE for tools-build target.

Diffstat:
Makefile | 5++++-
1 file changed, 4 insertions(+), 1 deletion(-)

diff --git 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