From 26c7c700245d8fdc09f6a271d69734c9f679aaea Mon Sep 17 00:00:00 2001 From: lantz Date: Mon, 4 Jan 2021 18:51:54 -0800 Subject: [PATCH] use pip for make {install,develop} (#999) --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 9356520..752f69c 100644 --- a/Makefile +++ b/Makefile @@ -56,13 +56,13 @@ install-manpages: $(MANPAGES) install -D -t $(MANDIR) $(MANPAGES) install: install-mnexec install-manpages - $(PYTHON) setup.py install + $(PYTHON) -m pip install . develop: $(MNEXEC) $(MANPAGES) # Perhaps we should link these as well install $(MNEXEC) $(BINDIR) install $(MANPAGES) $(MANDIR) - $(PYTHON) setup.py develop + $(PYTHON) -m pip install -e . --no-binary man: $(MANPAGES)