aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPJ Eby <distutils-sig@python.org>2005-07-09 04:25:49 +0000
committerPJ Eby <distutils-sig@python.org>2005-07-09 04:25:49 +0000
commitdb0f52341dfc8237e655037e5ba632029da44887 (patch)
tree6f48db3195df66ea468851e68f0dab18c80572c5
parentb0c3783bc20b07c798b45e84bcf4e02df03036e9 (diff)
downloadexternal_python_setuptools-db0f52341dfc8237e655037e5ba632029da44887.tar.gz
external_python_setuptools-db0f52341dfc8237e655037e5ba632029da44887.tar.bz2
external_python_setuptools-db0f52341dfc8237e655037e5ba632029da44887.zip
Fix typos in option specs for bdist_egg.
--HG-- branch : setuptools extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/trunk/setuptools%4041103
-rw-r--r--setuptools/command/bdist_egg.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/setuptools/command/bdist_egg.py b/setuptools/command/bdist_egg.py
index 6cc818d3..74a2cd26 100644
--- a/setuptools/command/bdist_egg.py
+++ b/setuptools/command/bdist_egg.py
@@ -52,14 +52,14 @@ class bdist_egg(Command):
('keep-temp', 'k',
"keep the pseudo-installation tree around after " +
"creating the distribution archive"),
- ('dist-dir=', 'd',
+ ('dist-dir=', 'b',
"directory to put final built distributions in"),
('skip-build', None,
"skip rebuilding everything (for testing/debugging)"),
]
boolean_options = [
- 'keep-temp', 'skip-build', 'relative','tag-date','tag-svn-revision'
+ 'keep-temp', 'skip-build',
]