diff options
author | PJ Eby <distutils-sig@python.org> | 2005-06-12 21:47:34 +0000 |
---|---|---|
committer | PJ Eby <distutils-sig@python.org> | 2005-06-12 21:47:34 +0000 |
commit | 26a5ebfbad61a20d1011dd14585f86bde34211bb (patch) | |
tree | 55e3f2f04d74ebfc0cd187be3035f74eb7b1618c /easy_install.py | |
parent | 5bf51fa29ddefee5ff82a52b9c14420f70401779 (diff) | |
download | external_python_setuptools-26a5ebfbad61a20d1011dd14585f86bde34211bb.tar.gz external_python_setuptools-26a5ebfbad61a20d1011dd14585f86bde34211bb.tar.bz2 external_python_setuptools-26a5ebfbad61a20d1011dd14585f86bde34211bb.zip |
Add 'ez_setup' bootstrap installer. Prep for 0.4a2 release.
--HG--
branch : setuptools
extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/trunk/setuptools%4041054
Diffstat (limited to 'easy_install.py')
-rwxr-xr-x | easy_install.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/easy_install.py b/easy_install.py index a276e572..77205c19 100755 --- a/easy_install.py +++ b/easy_install.py @@ -247,6 +247,7 @@ class easy_install(Command): def install_egg(self, egg_path, zip_ok, tmpdir): destination = os.path.join(self.install_dir,os.path.basename(egg_path)) + destination = os.path.abspath(destination) ensure_directory(destination) if not samefile(egg_path, destination): @@ -284,7 +285,6 @@ class easy_install(Command): - def installation_report(self, dist): """Helpful installation message for display to package users""" |