diff options
author | PJ Eby <distutils-sig@python.org> | 2005-07-10 05:06:31 +0000 |
---|---|---|
committer | PJ Eby <distutils-sig@python.org> | 2005-07-10 05:06:31 +0000 |
commit | ebe75f51d4e7be105729ac7555b97a17115aa570 (patch) | |
tree | fd62d7bafb3e65860b01a84d30211b2129a151f3 /setuptools/command/bdist_egg.py | |
parent | 451377d0e877fc610d1bdf8181ba70a90e4c14cc (diff) | |
download | external_python_setuptools-ebe75f51d4e7be105729ac7555b97a17115aa570.tar.gz external_python_setuptools-ebe75f51d4e7be105729ac7555b97a17115aa570.tar.bz2 external_python_setuptools-ebe75f51d4e7be105729ac7555b97a17115aa570.zip |
Allow EasyInstall to accept a directory containing a setup script as one
of its arguments. Fix swapped short option names for --bdist-dir and
--dist-dir in bdist_egg.
--HG--
branch : setuptools
extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/trunk/setuptools%4041110
Diffstat (limited to 'setuptools/command/bdist_egg.py')
-rw-r--r-- | setuptools/command/bdist_egg.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/setuptools/command/bdist_egg.py b/setuptools/command/bdist_egg.py index 552bd7e8..21dcc464 100644 --- a/setuptools/command/bdist_egg.py +++ b/setuptools/command/bdist_egg.py @@ -44,7 +44,7 @@ class bdist_egg(Command): description = "create an \"egg\" distribution" user_options = [ - ('bdist-dir=', 'd', + ('bdist-dir=', 'b', "temporary directory for creating the distribution"), ('plat-name=', 'p', "platform name to embed in generated filenames " @@ -54,7 +54,7 @@ class bdist_egg(Command): ('keep-temp', 'k', "keep the pseudo-installation tree around after " + "creating the distribution archive"), - ('dist-dir=', 'b', + ('dist-dir=', 'd', "directory to put final built distributions in"), ('skip-build', None, "skip rebuilding everything (for testing/debugging)"), |