Skip to content

Commit

Permalink
fix(Makefile): force python2.7 in virtualenv
Browse files Browse the repository at this point in the history
force the usage of python2.7 on systems where /usr/bin/python points to python3.x

fixes issue #12
  • Loading branch information
fwilkens-srl committed Mar 15, 2015
1 parent 31efbf4 commit 876772c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 876772c

Please sign in to comment.