From: Greg Ward Date: Wed, 5 Jul 2000 03:07:18 +0000 (+0000) Subject: Added the --dist-dir option that the "bdist_*" will use to control where X-Git-Tag: v2.0b1~1083 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=040dc0b691dde643c1666acf8159afb6429df788;p=python Added the --dist-dir option that the "bdist_*" will use to control where they place their output files. --- diff --git a/Lib/distutils/command/bdist.py b/Lib/distutils/command/bdist.py index 3fcbf7793d..100563a9d1 100644 --- a/Lib/distutils/command/bdist.py +++ b/Lib/distutils/command/bdist.py @@ -34,6 +34,9 @@ class bdist (Command): "temporary directory for creating built distributions"), ('formats=', None, "formats for distribution (comma-separated list)"), + ('dist-dir=', 'd', + "directory to put final built distributions in " + "[default: dist]"), ] help_options = [ @@ -65,6 +68,7 @@ class bdist (Command): def initialize_options (self): self.bdist_base = None self.formats = None + self.dist_dir = None # initialize_options() @@ -86,6 +90,9 @@ class bdist (Command): raise DistutilsPlatformError, \ "don't know how to create built distributions " + \ "on platform %s" % os.name + + if self.dist_dir is None: + self.dist_dir = "dist" # finalize_options()