From d3b78d86cadb8fcd27fbc7449d8d504cba945633 Mon Sep 17 00:00:00 2001 From: Zooko O'Whielacronx Date: Wed, 28 Jan 2009 22:55:34 -0700 Subject: [PATCH] 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. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index fa2320fe..7f10422b 100644 --- a/setup.py +++ b/setup.py @@ -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])]) -- 2.37.2