summaryrefslogtreecommitdiff
path: root/setuptools/command
diff options
context:
space:
mode:
authorphillip.eby <phillip.eby@6015fed2-1504-0410-9fe1-9d1591cc4771>2010-10-02 19:12:13 +0000
committerphillip.eby <phillip.eby@6015fed2-1504-0410-9fe1-9d1591cc4771>2010-10-02 19:12:13 +0000
commit972c32203db2f3834d9fc8847cb83d9e2db7d72d (patch)
tree5633d4177a04a55bb787af58cab158d793a2533e /setuptools/command
parenteea4a5b0c5bc13e4db6eef2e34a4d5b20e335d45 (diff)
downloadpython-setuptools-972c32203db2f3834d9fc8847cb83d9e2db7d72d.tar.gz
Tarfile link support, and handle .pyd/.dll files installed as data on
win32. git-svn-id: http://svn.python.org/projects/sandbox/trunk/setuptools@85188 6015fed2-1504-0410-9fe1-9d1591cc4771
Diffstat (limited to 'setuptools/command')
-rwxr-xr-xsetuptools/command/easy_install.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/command/easy_install.py b/setuptools/command/easy_install.py
index fff5c90..b5db0e8 100755
--- a/setuptools/command/easy_install.py
+++ b/setuptools/command/easy_install.py
@@ -1274,7 +1274,7 @@ def get_exe_prefixes(exe_filename):
prefixes = [
('PURELIB/', ''), ('PLATLIB/pywin32_system32', ''),
- ('PLATLIB/', ''),
+ ('PLATLIB/', ''), ('DATA/lib/site-packages/', ''),
('SCRIPTS/', 'EGG-INFO/scripts/')
]
z = zipfile.ZipFile(exe_filename)