From 2ec866d80126a396d83b20a2aed1d3f58604e163 Mon Sep 17 00:00:00 2001 From: Suwako Moriya Date: Tue, 26 Feb 2019 22:14:48 +0100 Subject: [PATCH] [MakeFile] Changed direct call of pip by a call via python3.6 --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index b044518..9159e0a 100755 --- a/Makefile +++ b/Makefile @@ -42,7 +42,7 @@ storage/libs/python: storage/libs storage/libs/get-pip.py storage/libs/dependenc export LD_LIBRARY_PATH=$(mainDir)/storage/libs/libgit2/libgit2-0.27.0/installed/lib;\ export LIBGIT2=$(mainDir)/storage/libs/libgit2/libgit2-0.27.0/installed/;\ export PYTHONPATH=$(mainDir)/storage/libs/python:${PYTHONPATH};\ - ~/.local/bin/pip3 install -U -t storage/libs/python -r dependencies + python3.6 ~/.local/bin/pip3 install -U -t storage/libs/python -r dependencies touch $(mainDir)/storage/libs/python storage: cd $(mainDir);\