diff options
author | PJ Eby <distutils-sig@python.org> | 2006-02-13 17:32:42 +0000 |
---|---|---|
committer | PJ Eby <distutils-sig@python.org> | 2006-02-13 17:32:42 +0000 |
commit | 49c03612e7eb1a75ec836c574f6d1711fb6ecebf (patch) | |
tree | b9d1b34d85d0f053f6b5f8dbc98955b4491ac44f /setuptools/command/bdist_egg.py | |
parent | 145a56c536fe553a8f1fc5c4a790eab057100c72 (diff) | |
download | external_python_setuptools-49c03612e7eb1a75ec836c574f6d1711fb6ecebf.tar.gz external_python_setuptools-49c03612e7eb1a75ec836c574f6d1711fb6ecebf.tar.bz2 external_python_setuptools-49c03612e7eb1a75ec836c574f6d1711fb6ecebf.zip |
Fixed duplication of scripts inside .egg files
--HG--
branch : setuptools
extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/trunk/setuptools%4042345
Diffstat (limited to 'setuptools/command/bdist_egg.py')
-rw-r--r-- | setuptools/command/bdist_egg.py | 2 |
1 files changed, 1 insertions, 1 deletions
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: |