diff options
author | Greg Ward <gward@python.net> | 2000-02-18 00:25:39 (GMT) |
---|---|---|
committer | Greg Ward <gward@python.net> | 2000-02-18 00:25:39 (GMT) |
commit | bbeceeaf9a5edf878154b17a6a94403a26822d51 (patch) | |
tree | 6089ebf12dbeb9ceeddecf33a7a7e231b5a6837a /Lib/distutils/command/build.py | |
parent | 592f28272e1287e8cdb57fb1887c4782fa07281e (diff) | |
download | cpython-bbeceeaf9a5edf878154b17a6a94403a26822d51.zip cpython-bbeceeaf9a5edf878154b17a6a94403a26822d51.tar.gz cpython-bbeceeaf9a5edf878154b17a6a94403a26822d51.tar.bz2 |
Renamed all 'options' class attributes to 'user_options'.
Diffstat (limited to 'Lib/distutils/command/build.py')
-rw-r--r-- | Lib/distutils/command/build.py | 19 |
1 files changed, 10 insertions, 9 deletions
diff --git a/Lib/distutils/command/build.py b/Lib/distutils/command/build.py index bcbb933..d46132f 100644 --- a/Lib/distutils/command/build.py +++ b/Lib/distutils/command/build.py @@ -14,15 +14,16 @@ class build (Command): description = "build everything needed to install" - options = [('build-base=', 'b', - "base directory for build library"), - ('build-lib=', 'l', - "directory for platform-shared files"), - ('build-platlib=', 'p', - "directory for platform-specific files"), - ('debug', 'g', - "compile extensions and libraries with debugging information"), - ] + user_options = [ + ('build-base=', 'b', + "base directory for build library"), + ('build-lib=', 'l', + "directory for platform-shared files"), + ('build-platlib=', 'p', + "directory for platform-specific files"), + ('debug', 'g', + "compile extensions and libraries with debugging information"), + ] def set_default_options (self): self.build_base = 'build' |