From 876772cf2296c4b7c80c2f828e245c903da67802 Mon Sep 17 00:00:00 2001 From: Florian Wilkens Date: Sun, 15 Mar 2015 12:51:03 +0100 Subject: [PATCH] fix(Makefile): force python2.7 in virtualenv force the usage of python2.7 on systems where /usr/bin/python points to python3.x fixes issue #12 --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 306f140864..3b98df3497 100644 --- a/Makefile +++ b/Makefile @@ -48,7 +48,7 @@ $(VENV): chmod +x $@ $(PYTHON): $(VENV) - $(VENV) $(VENV_DIR) + $(VENV) -p python2.7 $(VENV_DIR) $(PIP) install mako pyyaml $(MAKO_RENDER): $(PYTHON)