* builds/freetype.mk (refdoc-venv): Ensure python version (#54631).

This commit is contained in:
Ben Wagner 2018-09-09 09:25:58 +02:00 committed by Werner Lemberg
parent 7bf2028250
commit 0805c4a488
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2018-09-09 Ben Wagner <bungeman@google.com>
* builds/freetype.mk (refdoc-venv): Ensure python version (#54631).
2018-09-07 Werner Lemberg <wl@gnu.org>
[truetype] Fix assertion failure.

View File

@ -321,7 +321,7 @@ ENV_PIP := $(VENV_DIR)$(SEP)$(BIN)$(SEP)$(PIP)
refdoc-venv:
@echo Setting up virtualenv for Python...
virtualenv $(VENV_DIR)
virtualenv --python=$(PYTHON) $(VENV_DIR)
@echo Installing docwriter...
$(ENV_PIP) install docwriter
@echo Running docwriter...