From: Zooko O'Whielacronx <zooko@zooko.com>
Date: Thu, 4 Oct 2007 21:14:48 +0000 (-0700)
Subject: setup: we needn't depend on make-version targets because setup.py always attempts... 
X-Git-Tag: allmydata-tahoe-0.6.1~54
X-Git-Url: https://git.rkrishnan.org/vdrive/@manifest?a=commitdiff_plain;h=2b6951bf20d815b69b8bf8300bbf3212424d0805;p=tahoe-lafs%2Ftahoe-lafs.git

setup: we needn't depend on make-version targets because setup.py always attempts to make a version whenever it is executed
---

diff --git a/Makefile b/Makefile
index 44fb0d21..78113636 100644
--- a/Makefile
+++ b/Makefile
@@ -85,7 +85,7 @@ make-version:
 	$(MAKE) build
 	touch .built
 
-build: make-version
+build: 
 	$(PYTHON) ./setup.py build_ext -i
 	chmod +x bin/allmydata-tahoe
 
@@ -94,7 +94,7 @@ build: make-version
 # 'make install PREFIX=/usr/local/stow/tahoe-N.N' will do the same, but to
 # a different location
 
-install: make-version
+install: 
 ifdef PREFIX
 	mkdir -p $(PREFIX)
 	$(PP) $(PYTHON) ./setup.py install \