From: Daira Hopwood <david-sarah@jacaranda.org>
Date: Sat, 25 May 2013 02:58:38 +0000 (+0100)
Subject: Makefile: remove 'install' target. fixes #1717
X-Git-Tag: allmydata-tahoe-1.10.1a1~238
X-Git-Url: https://git.rkrishnan.org/specifications/components/com_hotproperty/somewhere?a=commitdiff_plain;h=refs%2Fpull%2F44%2Fhead;p=tahoe-lafs%2Ftahoe-lafs.git

Makefile: remove 'install' target. fixes #1717

Signed-off-by: Daira Hopwood <david-sarah@jacaranda.org>
---

diff --git a/Makefile b/Makefile
index 1eb1e4c3..a9a75b8b 100644
--- a/Makefile
+++ b/Makefile
@@ -31,20 +31,6 @@ build:
 	$(PYTHON) setup.py build
 	touch .built
 
-# 'make install' will do the following:
-#   build+install tahoe (probably to /usr/lib/pythonN.N/site-packages)
-# 'make install PREFIX=/usr/local/stow/tahoe-N.N' will do the same, but to
-# a different location
-
-install:
-ifdef PREFIX
-	mkdir -p $(PREFIX)
-	$(PYTHON) ./setup.py install --single-version-externally-managed \
-           --prefix=$(PREFIX) --record=./tahoe.files
-else
-	$(PYTHON) ./setup.py install --single-version-externally-managed
-endif
-
 
 # TESTING