diff options
author | Robert Myers <myer0052@gmail.com> | 2010-12-04 14:47:25 -0600 |
---|---|---|
committer | Robert Myers <myer0052@gmail.com> | 2010-12-04 14:47:25 -0600 |
commit | 7473dcbb92dd3fdeadfd67c725f08729a32cd06f (patch) | |
tree | 224118d5b299293c77ccbd86062b1131a824aa7e /setuptools/command/easy_install.py | |
parent | c337060368f6bce8442372bdc4049d31d279eba8 (diff) | |
download | external_python_setuptools-7473dcbb92dd3fdeadfd67c725f08729a32cd06f.tar.gz external_python_setuptools-7473dcbb92dd3fdeadfd67c725f08729a32cd06f.tar.bz2 external_python_setuptools-7473dcbb92dd3fdeadfd67c725f08729a32cd06f.zip |
Adding DATA/LIB/site-packages to the list of prefixes searched in an exe file during installation.
--HG--
branch : distribute
extra : rebase_source : f300b49beac88354af6238df4a83798721860716
Diffstat (limited to 'setuptools/command/easy_install.py')
-rwxr-xr-x | setuptools/command/easy_install.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/setuptools/command/easy_install.py b/setuptools/command/easy_install.py index 27fd00c7..61fbcf7f 100755 --- a/setuptools/command/easy_install.py +++ b/setuptools/command/easy_install.py @@ -1445,7 +1445,8 @@ def get_exe_prefixes(exe_filename): prefixes = [ ('PURELIB/', ''), ('PLATLIB/pywin32_system32', ''), ('PLATLIB/', ''), - ('SCRIPTS/', 'EGG-INFO/scripts/') + ('SCRIPTS/', 'EGG-INFO/scripts/'), + ('DATA/LIB/site-packages', ''), ] z = zipfile.ZipFile(exe_filename) try: |