From b64bd3c2e3036c9c6e7849cf874c571eebce8686 Mon Sep 17 00:00:00 2001 From: dave Date: Thu, 1 Nov 2018 22:39:33 -0700 Subject: [PATCH] fix install path --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 3aedacd..6c3205a 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ #!/usr/bin/make -f PY3_SRC=./cpython/ -PY3_CONFFLAGS=--prefix=$(DESTDIR)/opt/extpython/3.7.0 --with-ensurepip=install +PY3_CONFFLAGS=--prefix=$(DESTDIR)/opt/extpython/3.6.7 --with-ensurepip=install all: cd $(PY3_SRC) && \ @@ -11,7 +11,7 @@ all: install: cd $(PY3_SRC) && \ make install - # $(DESTDIR)/opt/extpython/3.7.0/bin/python3 $(DESTDIR)/opt/extpython/3.7.0/bin/pip3 install -r requirements.txt + # $(DESTDIR)/opt/extpython/3.6.7/bin/python3 $(DESTDIR)/opt/extpython/3.6.7/bin/pip3 install -r requirements.txt clean: cd $(PY3_SRC) && \