From 49c03612e7eb1a75ec836c574f6d1711fb6ecebf Mon Sep 17 00:00:00 2001 From: PJ Eby Date: Mon, 13 Feb 2006 17:32:42 +0000 Subject: Fixed duplication of scripts inside .egg files --HG-- branch : setuptools extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/trunk/setuptools%4042345 --- setuptools/command/bdist_egg.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'setuptools/command/bdist_egg.py') diff --git a/setuptools/command/bdist_egg.py b/setuptools/command/bdist_egg.py index 68b1ba67..4c0976d4 100644 --- a/setuptools/command/bdist_egg.py +++ b/setuptools/command/bdist_egg.py @@ -201,7 +201,7 @@ class bdist_egg(Command): if self.distribution.scripts: script_dir = os.path.join(egg_info, 'scripts') log.info("installing scripts to %s" % script_dir) - self.call_command('install_scripts', install_dir=script_dir) + self.call_command('install_scripts',install_dir=script_dir,no_ep=1) native_libs = os.path.join(self.egg_info,"native_libs.txt") if all_outputs: -- cgit v1.2.3