From 4bb7a33e9370f520b985f96aa8229b659320ff1d Mon Sep 17 00:00:00 2001 From: Sebastian Thiel Date: Sun, 28 Feb 2016 08:08:35 +0100 Subject: [PATCH] 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. --- src/mako/deps.mako | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mako/deps.mako b/src/mako/deps.mako index c4506a92738..ced7c467c3e 100644 --- a/src/mako/deps.mako +++ b/src/mako/deps.mako @@ -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