diff options
author | tarek <none@none> | 2009-09-11 18:29:31 +0200 |
---|---|---|
committer | tarek <none@none> | 2009-09-11 18:29:31 +0200 |
commit | 299a9d2f356de19fc6df0952655c79817aa2c1b1 (patch) | |
tree | ee6a9cfee0a75ee9959a7c6ae4ab4d2803b93a41 /setup.py | |
parent | 364308e9ce78818d74e88987459e3c08f8e80d11 (diff) | |
download | external_python_setuptools-299a9d2f356de19fc6df0952655c79817aa2c1b1.tar.gz external_python_setuptools-299a9d2f356de19fc6df0952655c79817aa2c1b1.tar.bz2 external_python_setuptools-299a9d2f356de19fc6df0952655c79817aa2c1b1.zip |
better marker for easy_install detection
--HG--
branch : distribute
extra : rebase_source : 2119ce08a6104dd1269137a28044684db358d402
Diffstat (limited to 'setup.py')
-rwxr-xr-x | setup.py | 9 |
1 files changed, 5 insertions, 4 deletions
@@ -16,12 +16,13 @@ scripts = [] # if we are installing Distribute using "python setup.py install" # we need to get setuptools out of the way +def _easy_install_marker(): + return (len(sys.argv) == 5 and sys.argv[2] == 'bdist_egg' and + sys.argv[3] == '--dist-dir' and 'egg-dist-tmp-' in sys.argv[-1]) + def _being_installed(): # easy_install marker - if (len(sys.argv) == 5 and sys.argv[2] == 'bdist_egg' and - sys.argv[3] == '--dist-dir'): - return True - return 'install' in sys.argv[1:] + return 'install' in sys.argv[1:] or _easy_install_marker() if _being_installed(): from distribute_setup import before_install |