From 0bd7f2004843b4e9dcd8af366e7ffc6632fb9e41 Mon Sep 17 00:00:00 2001 From: Sebastian Thiel Date: Fri, 16 Oct 2015 15:52:24 +0200 Subject: [PATCH] fix(makefile): use PYTHONPATH for mako invocation That way, it will find its resources. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index d97c834999..541e258aec 100644 --- a/Makefile +++ b/Makefile @@ -75,7 +75,7 @@ include $(API_DEPS) include $(CLI_DEPS) LICENSE.md: $(MAKO_SRC)/LICENSE.md.mako $(API_SHARED_INFO) $(MAKO_RENDER) - $(MAKO) -io $<=$@ --data-files $(API_SHARED_INFO) + $(PYPATH) $(MAKO) -io $<=$@ --data-files $(API_SHARED_INFO) license: LICENSE.md