[MakeFile] Changed direct call of pip by a call via python3.6

This commit is contained in:
Suwako Moriya 2019-02-26 22:14:48 +01:00
parent 80e692ec8a
commit 2ec866d801

View File

@ -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);\