setup: if any of "build", "develop", or "test" appear in the sys.argv then that means we'll be doing a develop, so add the workarounds for setuptools #17 in any case

I think there must be a much better solution for this -- probably to fix setuptools #17 and ship our own fork of setuptools and rely on it.
This commit is contained in:
Zooko O'Whielacronx 2009-01-28 22:55:34 -07:00
parent bbe4e2d479
commit d3b78d86ca

View File

@ -44,7 +44,7 @@ for i in range(len(sys.argv)):
pp.append(libdir)
os.environ['PYTHONPATH'] = os.pathsep.join(pp)
if arg.startswith("develop"):
if arg.startswith("develop") or arg.startswith("build") or arg.startswith("test"): # argh! horrible kludge to workaround setuptools #17
if sys.platform == "linux2":
# workaround for tahoe #229 / setuptools #17, on debian
sys.argv.extend(["--site-dirs", "/var/lib/python-support/python%d.%d" % (sys.version_info[:2])])