From 26a5ebfbad61a20d1011dd14585f86bde34211bb Mon Sep 17 00:00:00 2001 From: PJ Eby Date: Sun, 12 Jun 2005 21:47:34 +0000 Subject: 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 --- easy_install.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'easy_install.py') 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""" -- cgit v1.2.3