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
This commit is contained in:
Florian Wilkens
2015-03-15 12:51:03 +01:00
parent 31efbf4fb0
commit 876772cf22

View File

@@ -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)