fix(make): use venv-python to run any utility

Previously the yaml version generation could fail if your system-python
didn't have yaml installed. Now the virtual env is used, which is
guaranteed to support yaml.
This commit is contained in:
Sebastian Thiel
2016-02-28 08:08:35 +01:00
parent be0faf0e1d
commit 4bb7a33e93

View File

@@ -188,5 +188,5 @@ ${fake_target}:
% endfor
update-json: ${' '.join(json_api_targets)}
$(API_VERSION_GEN) $(API_DIR) $(API_LIST) $(API_LIST)
$(PYTHON) $(API_VERSION_GEN) $(API_DIR) $(API_LIST) $(API_LIST)
% endif