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 814a994e99a5ca22b3fbfa6d4aef1cc1453469a8
parent 21d1e5156b6e6ef4cd64c2bce27e0e4bdb7abffb
Author: Joris Vink <joris@coders.se>
Date:   Wed,  9 Sep 2020 22:18:59 +0200

Don't depend on pushd/popd

Diffstat:
Makefile | 8++++----
1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/Makefile b/Makefile @@ -228,16 +228,16 @@ uninstall: tools-build: $(KODEV) for t in $(TOOLS); do \ - pushd tools/$$t; \ + cd tools/$$t; \ env KODEV_OUTPUT=$(KOREPATH) $(KOREPATH)/$(KODEV) build; \ - popd; \ + cd $(KOREPATH); \ done tools-clean: $(KODEV) for t in $(TOOLS); do \ - pushd tools/$$t; \ + cd tools/$$t; \ $(KOREPATH)/$(KODEV) clean; \ - popd; \ + cd $(KOREPATH); \ done tools-install: