[tor-commits] [bridgedb/master] 3043 - Make make install actually install.

aagbsn at torproject.org aagbsn at torproject.org
Wed Apr 17 00:26:44 UTC 2013


commit b4fdc57aa0789acd6bee55a3733ddc9177ec9934
Author: aagbsn <aagbsn at 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





More information about the tor-commits mailing list