
17 Apr
2013
17 Apr
'13
12:26 a.m.
commit b4fdc57aa0789acd6bee55a3733ddc9177ec9934 Author: aagbsn <aagbsn@extc.org> Date: Mon Nov 19 15:45:28 2012 -0800 3043 - Make make install actually install. make install will just call python setup.py install. The pythonic way to install python packages with a setup.py is: python setup.py install, and now make install does just that. --- Makefile | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/Makefile b/Makefile index bee8d75..e9abae4 100644 --- a/Makefile +++ b/Makefile @@ -6,4 +6,4 @@ test: python setup.py test install: - @echo 'To install, run python setup.py --prefix=$$HOME' + python setup.py install