From: Zooko O'Whielacronx <zooko@zooko.com>
Date: Tue, 22 Jan 2008 16:35:54 +0000 (-0700)
Subject: setup: it is okay to leave src/allmydata_tahoe.egg-info in place
X-Git-Url: https://git.rkrishnan.org/%5B/%5D%20/uri/flags/...?a=commitdiff_plain;h=c740da9b6d98646c341c9b2270b0971821cf9446;p=tahoe-lafs%2Ftahoe-lafs.git

setup: it is okay to leave src/allmydata_tahoe.egg-info in place
This directory allows programs to programmatically identify tahoe and its version number while "running from source" -- i.e. using ./setup.py develop.
---

diff --git a/Makefile b/Makefile
index 025cd7f1..60c84ab3 100644
--- a/Makefile
+++ b/Makefile
@@ -297,10 +297,10 @@ test-darcs-boringfile:
 	$(PYTHON) misc/test-darcs-boringfile.py
 
 test-clean:
-	find . |grep -v allfiles.tmp |grep -v src/allmydata/_version.py |sort >allfiles.tmp.old
+	find . |grep -vEe"allfiles.tmp|src/allmydata/_version.py|src/allmydata_tahoe.egg-info" |sort >allfiles.tmp.old
 	$(MAKE)
 	$(MAKE) clean
-	find . |grep -v allfiles.tmp |grep -v src/allmydata/_version.py |sort >allfiles.tmp.new
+	find . |grep -vEe"allfiles.tmp|src/allmydata/_version.py|src/allmydata_tahoe.egg-info" |sort >allfiles.tmp.new
 	diff allfiles.tmp.old allfiles.tmp.new
 
 clean: